6. Z 字形变换
https://leetcode-cn.com/problems/zigzag-conversion/
解法一:
按如下规律
两列之间的差距为2n-2,若有斜线,两列之间差距设为step1和step2,有step1+step2=2n-2。
pos从i开始,每次+step1或+step2,交替进行
注意 numRows==1 && numRows==2的情况,没有斜线。
最后更新于
https://leetcode-cn.com/problems/zigzag-conversion/
按如下规律
两列之间的差距为2n-2,若有斜线,两列之间差距设为step1和step2,有step1+step2=2n-2。
pos从i开始,每次+step1或+step2,交替进行
注意 numRows==1 && numRows==2的情况,没有斜线。
最后更新于