溫馨提示×

溫馨提示×

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

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

C++實現(xiàn)LeetCode字型轉(zhuǎn)換字符串的方法

發(fā)布時間:2021-07-10 09:07:37 來源:億速云 閱讀:112 作者:chen 欄目:開發(fā)技術(shù)

這篇文章主要介紹“C++實現(xiàn)LeetCode字型轉(zhuǎn)換字符串的方法”,在日常操作中,相信很多人在C++實現(xiàn)LeetCode字型轉(zhuǎn)換字符串的方法問題上存在疑惑,小編查閱了各式資料,整理出簡單好用的操作方法,希望對大家解答”C++實現(xiàn)LeetCode字型轉(zhuǎn)換字符串的方法”的疑惑有所幫助!接下來,請跟著小編一起來學(xué)習(xí)吧!

[LeetCode] 6. ZigZag Conversion 之字型轉(zhuǎn)換字符串

The string "PAYPALISHIRING" is written in a zigzag pattern on a given number of rows like this: (you may want to display this pattern in a fixed font for better legibility)

P   A   H   N
A P L S I I G
Y   I   R

And then read line by line: "PAHNAPLSIIGYIR"

Write the code that will take a string and make this conversion given a number of rows:

string convert(string s, int numRows);

Example 1:

Input: s = "PAYPALISHIRING", numRows = 3
Output: "PAHNAPLSIIGYIR"

Example 2:

Input: s = "PAYPALISHIRING", numRows = 4
Output: "PINALSIGYAHRPI"
Explanation:

P     I    N
A   L S  I G
Y A   H R
P     I

這道題剛開始看了半天沒看懂是咋樣變換的,上網(wǎng)查了些資料,終于搞懂了,就是要把字符串?dāng)[成一個之字型的,比如有一個字符串 "0123456789ABCDEF",轉(zhuǎn)為 zigzag 如下所示:

當(dāng) n = 2 時:

0 2 4 6 8 A C E

1 3 5 7 9 B D F

當(dāng) n = 3 時:

0   4    8     C

1 3 5 7 9 B D F

2    6   A     E

當(dāng) n = 4 時:

0     6        C

1   5 7   B  D

2 4   8 A    E

3      9       F

可以發(fā)現(xiàn),除了第一行和最后一行沒有中間形成之字型的數(shù)字外,其他都有,而首位兩行中相鄰兩個元素的 index 之差跟行數(shù)是相關(guān)的,為  2*nRows - 2, 根據(jù)這個特點,可以按順序找到所有的黑色元素在元字符串的位置,將他們按順序加到新字符串里面。對于紅色元素出現(xiàn)的位置(Github 上可能無法正常顯示顏色,請參見博客園上的帖子)也是有規(guī)律的,每個紅色元素的位置為 j + 2 x numRows-2 - 2 x i, 其中,j為前一個黑色元素的 index,i為當(dāng)前行數(shù)。 比如當(dāng) n = 4 中的那個紅色5,它的位置為 1 + 2 x 4-2 - 2 x 1 = 5,為原字符串的正確位置。知道了所有黑色元素和紅色元素位置的正確算法,就可以一次性的把它們按順序都加到新的字符串里面。代碼如下:

解法一:

class Solution {
public:
    string convert(string s, int numRows) {
        if (numRows <= 1) return s;
        string res;
        int size = 2 * numRows - 2, n = s.size();
        for (int i = 0; i < numRows; ++i) {
            for (int j = i; j < n; j += size) {
                res += s[j];
                int pos = j + size - 2 * i;
                if (i != 0 && i != numRows - 1 && pos < n) res += s[pos];
            }
        }
        return res;
    }
};

若上面解法中的規(guī)律不是很好想的話,我們也可以用下面這種更直接的方法來做,建立一個大小為 numRows 的字符串?dāng)?shù)組,為的就是把之字形的數(shù)組整個存進(jìn)去,然后再把每一行的字符拼接起來,就是想要的結(jié)果了。順序就是按列進(jìn)行遍歷,首先前 numRows 個字符就是按順序存在每行的第一個位置,然后就是 ‘之' 字形的連接位置了,可以發(fā)現(xiàn)其實都是在行數(shù)區(qū)間 [1, numRows-2] 內(nèi),只要按順序去取字符就可以了,最后把每行都拼接起來即為所求,參見代碼如下:

解法二:

class Solution {
public:
    string convert(string s, int numRows) {
        if (numRows <= 1) return s;
        string res;
        int i = 0, n = s.size();
        vector<string> vec(numRows);
        while (i < n) {
            for (int pos = 0; pos < numRows && i < n; ++pos) {
                vec[pos] += s[i++];
            }
            for (int pos = numRows - 2; pos >= 1 && i < n; --pos) {
                vec[pos] += s[i++];
            }
        }
        for (auto &a : vec) res += a;
        return res;
    }
};

到此,關(guān)于“C++實現(xiàn)LeetCode字型轉(zhuǎn)換字符串的方法”的學(xué)習(xí)就結(jié)束了,希望能夠解決大家的疑惑。理論與實踐的搭配能更好的幫助大家學(xué)習(xí),快去試試吧!若想繼續(xù)學(xué)習(xí)更多相關(guān)知識,請繼續(xù)關(guān)注億速云網(wǎng)站,小編會繼續(xù)努力為大家?guī)砀鄬嵱玫奈恼拢?/p>

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

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

c++
AI