Description
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)
And then read line by line: “PAHNAPLSIIGYIR”
Write the code that will take a string and make this conversion given a number of rows:
Example 1:
Input:
Output:
Example 2:
Input:
Output:
Explanation:
分析
题目的意思是:把字符串转换成之字形的然后输出。
比如有一个字符串 “0123456789ABCDEF”,转为zigzag
当 n = 2 时:
当 n = 3 时:
当 n = 4 时:
除了第一行和最后一行没有中间形成之字型的数字外,其他都有,而首位两行中相邻两个元素的index之差跟行数是相关的,为 2*nRows - 2,
- 根据这个特点,我们可以按顺序找到所有的黑色元素(例如n=4中的第一列)在元字符串的位置,将他们按顺序加到新字符串里面
- 对于红色元素出现的位置也是有规律的,每个红色元素(例如n=4中的第二列)的位置为 j + 2nRows-2 - 2i, 其中,j为前一个黑色元素的列数,i为当前行数。
- 比如当n = 4中的那个红色5,它的位置为 1 + 24-2 - 21 = 5,为原字符串的正确位置。
- 当我们知道所有黑色元素和红色元素位置的正确算法,我们就可以一次性的把它们按顺序都加到新的字符串里面。
代码
参考文献
[编程题]zigzag-conversion[LeetCode] ZigZag Converesion 之字型转换字符串