溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊(cè)×
其他方式登錄
點(diǎn)擊 登錄注冊(cè) 即表示同意《億速云用戶服務(wù)條款》

C++中怎么利用LeetCode翻轉(zhuǎn)字符串中的單詞

發(fā)布時(shí)間:2021-08-04 17:52:54 來(lái)源:億速云 閱讀:190 作者:Leah 欄目:開(kāi)發(fā)技術(shù)

這篇文章將為大家詳細(xì)講解有關(guān)C++中怎么利用LeetCode翻轉(zhuǎn)字符串中的單詞,文章內(nèi)容質(zhì)量較高,因此小編分享給大家做個(gè)參考,希望大家閱讀完這篇文章后對(duì)相關(guān)知識(shí)有一定的了解。

[LeetCode] 557.Reverse Words in a String III 翻轉(zhuǎn)字符串中的單詞之三

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.

這道題讓我們翻轉(zhuǎn)字符串中的每個(gè)單詞,感覺(jué)整體難度要比之前兩道Reverse Words in a String II和Reverse Words in a String要小一些,由于題目中說(shuō)明了沒(méi)有多余空格,使得難度進(jìn)一步的降低了。首先我們來(lái)看使用字符流處理類(lèi)stringstream來(lái)做的方法,相當(dāng)簡(jiǎn)單,就是按順序讀入每個(gè)單詞進(jìn)行翻轉(zhuǎn)即可,參見(jiàn)代碼如下:

解法一:

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;
    }
};

下面我們來(lái)看不使用字符流處理類(lèi),也不使用STL內(nèi)置的reverse函數(shù)的方法,那么就是用兩個(gè)指針,分別指向每個(gè)單詞的開(kāi)頭和結(jié)尾位置,確定了單詞的首尾位置后,再用兩個(gè)指針對(duì)單詞進(jìn)行首尾交換即可,有點(diǎn)像驗(yàn)證回文字符串的方法,參見(jiàn)代碼如下:

解法二:

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;
    }
};

關(guān)于C++中怎么利用LeetCode翻轉(zhuǎn)字符串中的單詞就分享到這里了,希望以上內(nèi)容可以對(duì)大家有一定的幫助,可以學(xué)到更多知識(shí)。如果覺(jué)得文章不錯(cuò),可以把它分享出去讓更多的人看到。

向AI問(wèn)一下細(xì)節(jié)

免責(zé)聲明:本站發(fā)布的內(nèi)容(圖片、視頻和文字)以原創(chuàng)、轉(zhuǎn)載和分享為主,文章觀點(diǎn)不代表本網(wǎng)站立場(chǎng),如果涉及侵權(quán)請(qǐng)聯(lián)系站長(zhǎng)郵箱:is@yisu.com進(jìn)行舉報(bào),并提供相關(guān)證據(jù),一經(jīng)查實(shí),將立刻刪除涉嫌侵權(quán)內(nèi)容。

AI