码迷,mamicode.com
首页 > 其他好文 > 详细

【字符串】6. Z 字形变换

时间:2020-05-04 10:40:43      阅读:63      评论:0      收藏:0      [点我收藏+]

标签:ima   pre   png   turn   span   反向   width   height   style   

题目:

技术图片

 

 

解答:

技术图片

技术图片

 

 

 1 class Solution {
 2 public:
 3     string convert(string s, int numRows) 
 4     {
 5            if (numRows == 1) 
 6         {
 7             return s;
 8         }
 9 
10         // 防止s的长度小于行数
11         vector<string> rows(min(numRows, int(s.size()))); 
12         int curRow = 0;
13         bool goingDown = false;
14 
15         for (char c : s) 
16         {
17             rows[curRow] += c;
18             if (curRow == 0 || curRow == numRows - 1) 
19             {
20                 // 当前行curRow为0或numRows -1时,箭头发生反向转折
21                 goingDown = !goingDown;
22             }
23             curRow += goingDown ? 1 : -1;
24         }
25 
26         string ret;
27         for (string row : rows) 
28         {
29             // 从上到下遍历行
30             ret += row;
31         }
32 
33         return ret;
34     }
35 };

 

【字符串】6. Z 字形变换

标签:ima   pre   png   turn   span   反向   width   height   style   

原文地址:https://www.cnblogs.com/ocpc/p/12825520.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!