美文网首页Leetcode
LeetCode#6 Z字形变换

LeetCode#6 Z字形变换

作者: HU兔兔 | 来源:发表于2020-02-03 17:30 被阅读0次
    class Solution {
    public:
        string convert(string s, int numRows) {
            if(numRows==1){
                return s;
            }
            vector<string> list(numRows);
            int i,flag;
            flag=-1;
            i=0;
            for(auto str:s){
                list[i].push_back(str);
                if(i==0||i==numRows-1){
                    flag=-1*flag;
                }
                i+=flag;
            }
            string answer;
            for(i=0;i<numRows;i++){
                answer+=list[i];
            }
            return answer;
        }
    };
    

    相关文章

      网友评论

        本文标题:LeetCode#6 Z字形变换

        本文链接:https://www.haomeiwen.com/subject/wtckxhtx.html