6. Z 字形变换(c++)

6. Z 字形变换(c++),第1张

6. Z 字形变换(c++)


class Solution {
public:
    string convert(string s, int numRows) {
        if(numRows == 1){
            return s;
        }
        vectorres(numRows);//res的大小为非空行数大小
        int i = 0;
        int flag = -1;
        for(char c:s){
            res[i] += c;
            if(i == 0 || i == numRows -1){
                flag = -flag;//行数逆转
            }
            i += flag;
        }
        string new_s;
        for(string r:res){
            new_s += r;
        }
        return new_s;
    }
};

参考链接:
https://leetcode-cn.com/problems/zigzag-conversion/solution/zzi-xing-bian-huan-by-jyd/

欢迎分享,转载请注明来源:内存溢出

原文地址: http://outofmemory.cn/zaji/5670300.html

(0)
打赏 微信扫一扫 微信扫一扫 支付宝扫一扫 支付宝扫一扫
上一篇 2022-12-16
下一篇 2022-12-16

发表评论

登录后才能评论

评论列表(0条)

保存