您好,登錄后才能下訂單哦!
這篇文章將為大家詳細講解有關C++中怎么利用LeetCode翻轉字符串中的單詞,文章內容質量較高,因此小編分享給大家做個參考,希望大家閱讀完這篇文章后對相關知識有一定的了解。
Given a string, you need to reverse the order of characters in each word within a sentence while still preserving whitespace and initial word order.
Example 1:
Input: "Let's take LeetCode contest"
Output: "s'teL ekat edoCteeL tsetnoc"
Note: In the string, each word is separated by single space and there will not be any extra space in the string.
這道題讓我們翻轉字符串中的每個單詞,感覺整體難度要比之前兩道Reverse Words in a String II和Reverse Words in a String要小一些,由于題目中說明了沒有多余空格,使得難度進一步的降低了。首先我們來看使用字符流處理類stringstream來做的方法,相當簡單,就是按順序讀入每個單詞進行翻轉即可,參見代碼如下:
解法一:
class Solution { public: string reverseWords(string s) { string res = "", t = ""; istringstream is(s); while (is >> t) { reverse(t.begin(), t.end()); res += t + " "; } res.pop_back(); return res; } };
下面我們來看不使用字符流處理類,也不使用STL內置的reverse函數的方法,那么就是用兩個指針,分別指向每個單詞的開頭和結尾位置,確定了單詞的首尾位置后,再用兩個指針對單詞進行首尾交換即可,有點像驗證回文字符串的方法,參見代碼如下:
解法二:
class Solution { public: string reverseWords(string s) { int start = 0, end = 0, n = s.size(); while (start < n && end < n) { while (end < n && s[end] != ' ') ++end; for (int i = start, j = end - 1; i < j; ++i, --j) { swap(s[i], s[j]); } start = ++end; } return s; } };
關于C++中怎么利用LeetCode翻轉字符串中的單詞就分享到這里了,希望以上內容可以對大家有一定的幫助,可以學到更多知識。如果覺得文章不錯,可以把它分享出去讓更多的人看到。
免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。