leetcode | 6. Z 字形变换

6. Z 字形变换

将一个给定字符串根据给定的行数,以从上往下、从左到右进行 Z 字形排列。

比如输入字符串为 "LEETCODEISHIRING" 行数为 3 时,排列如下:

L   C   I   R
E T O E S I I G
E   D   H   N

之后,你的输出需要从左往右逐行读取,产生出一个新的字符串,比如:"LCIRETOESIIGEDHN"

请你实现这个将字符串进行指定行数变换的函数:

string convert(string s, int numRows);

示例 1:

输入: s = "LEETCODEISHIRING", numRows = 3
输出: "LCIRETOESIIGEDHN"

示例 2:

输入: s = "LEETCODEISHIRING", numRows = 4
输出: "LDREOEIIECIHNTSG"
解释:

L     D     R
E   O E   I I
E C   I H   N
T     S     G

我的理解:

 if (curRow == 0 || curRow == numRows - 1) goingDown = !goingDown;
            curRow += goingDown ? 1 : -1;

这一句代码很实用,可以控制方向。

方法一:按行排序

leetcode | 6. Z 字形变换_第1张图片

leetcode | 6. Z 字形变换_第2张图片

leetcode | 6. Z 字形变换_第3张图片

思路

通过从左向右迭代字符串,我们可以轻松地确定字符位于 Z 字形图案中的哪一行。

算法

leetcode | 6. Z 字形变换_第4张图片

class Solution {
public:
    string convert(string s, int numRows) {

        if (numRows == 1) return s;

        vector rows(min(numRows, int(s.size())));
        int curRow = 0;
        bool goingDown = false;

        for (char c : s) {
            rows[curRow] += c;
            if (curRow == 0 || curRow == numRows - 1) goingDown = !goingDown;
            curRow += goingDown ? 1 : -1;
        }

        string ret;
        for (string row : rows) ret += row;
        return ret;
    }
};

 

复杂度分析

    时间复杂度:O(n)O(n)O(n),其中 n==len(s)n == \text{len}(s)n==len(s)
    空间复杂度:O(n)O(n)O(n)

方法二:按行访问

leetcode | 6. Z 字形变换_第5张图片

leetcode | 6. Z 字形变换_第6张图片

leetcode | 6. Z 字形变换_第7张图片

思路

按照与逐行读取 Z 字形图案相同的顺序访问字符串。

算法

leetcode | 6. Z 字形变换_第8张图片

 

class Solution {
public:
    string convert(string s, int numRows) {

        if (numRows == 1) return s;

        string ret;
        int n = s.size();
        int cycleLen = 2 * numRows - 2;

        for (int i = 0; i < numRows; i++) {
            for (int j = 0; j + i < n; j += cycleLen) {
                ret += s[j + i];
                if (i != 0 && i != numRows - 1 && j + cycleLen - i < n)
                    ret += s[j + cycleLen - i];
            }
        }
        return ret;
    }
};

复杂度分析

    时间复杂度:O(n)O(n)O(n),其中 n==len(s)n == \text{len}(s)n==len(s)。每个索引被访问一次。
    空间复杂度:O(n)O(n)O(n)。对于 C++ 实现,如果返回字符串不被视为额外空间,则复杂度为 O(1)O(1)O(1)。

作者:LeetCode
链接:https://leetcode-cn.com/problems/zigzag-conversion/solution/z-zi-xing-bian-huan-by-leetcode/
来源:力扣(LeetCode)
著作权归作者所有。商业转载请联系作者获得授权,非商业转载请注明出处。

你可能感兴趣的:(数据结构与算法,字符串,leetcode,算法,c++)