题目描述
将一个给定字符串 s 根据给定的行数 numRows ,以从上往下、从左到右进行 Z 字形排列。
比如输入字符串为 “PAYPALISHIRING” 行数为 3 时,排列如下:
P A H N
A P L S I I G
Y I R
之后,你的输出需要从左往右逐行读取,产生出一个新的字符串,比如:“PAHNAPLSIIGYIR”。
请你实现这个将字符串进行指定行数变换的函数:
string convert(string s, int numRows);
示例 1:
输入:s = "PAYPALISHIRING", numRows = 3
输出:"PAHNAPLSIIGYIR"
示例 2:
输入:s = "PAYPALISHIRING", numRows = 4
输出:"PINALSIGYAHRPI"
解释:
P I N
A L S I G
Y A H R
P I
解题思路
- s是以z字型存储的字符串,目标是按行打印。
- 假设numRows行分别为s1,s2…sn,当遍历字符串s时,每个字符c对应的行索引先从s1增加到sn,再从sn减小到s1,如此反复…
- 因此,解决方案为:在遍历s时,模拟这个行索引的过程,把对应的字符填写到相应的res[i],最后再合并res。
算法流程:
遍历字符串s:
- res[i]+=c,将si行的字符添加到res[i]中。
- i=+=flag,更新当前c对应的行索引
- flag=-flag,通过flag控制行索引的增加或减小,当到达z转折时,改变方向。
代码
class Solution(object):
def convert(self, s, numRows):
"""
:type s: str
:type numRows: int
:rtype: str
"""
if numRows<2:
return s
res=["" for i in range(numRows)]
i,flag=0,-1
for c in s:
res[i]+=c
if i==0 or i==numRows-1:
flag=-flag
i+=flag
return "".join(res)