本文主要是介绍力扣题(6) —— z字形变换,希望对大家解决编程问题提供一定的参考价值,需要的开发者们随着小编来一起学习吧!
z字形变换
题目描述
将一个给定字符串 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
示例 3:
输入:s = "A", numRows = 1
输出:"A"
提示:
1 <= s.length <= 1000
s 由英文字母(小写和大写)、',' 和 '.' 组成
1 <= numRows <= 1000
来源:力扣(LeetCode)
链接:https://leetcode-cn.com/problems/zigzag-conversion
做法一
一开始真的不知道怎么做,那就只好把问题写下来找规律了,为了规律可见,我们将字符串的索引进行排序。如图:
我的建议是找到规律后自己实现一下代码,说实话我自己的代码也写得很乱(毕竟是小白)
s = input()numRows = int(input())def convert(s, numRows):T = (numRows-1) * 2 # 周期if T == 0: # 此时 numRows == 1,其实就不用变化return selse:res = ''count = 0 # 表示是第几行while count < numRows:index = count # index 表示索引flag = Truewhile flag:if count == 0 or count == numRows-1: # 第 0 行和最后一行不用考虑 V 字的右边if index < len(s): # 判断是否越界res += s[index]index += Telse:break# 剩下的条件语句,都是考虑可能出现的情况elif (index - count*2) > 0 and index < len(s) :res += s[index-count*2] + s[index]index += Telif 0 < (index - count*2) < len(s) and index >= len(s):res += s[index-count*2]index += Telif (index - count) == 0 and count < len(s): # 避免越界,比如 s = 'A', numRows = 3res += s[count]index += Telse:flag = Falsecount += 1return resprint(convert(s, numRows))
做法二
字符串是怎么变化的我们就怎么解决
还是以索引为例(其实直接用字符串也可以,因为不用刻意找规律)
不过要把这样的思路转换成代码还是比前一个解法要困难一点的。
s = input()numRows = int(input())def convert(s, numRows):if numRows == 1:return s# 建立一个二维数组res_list = []for i in range(numRows):res_list.append([])# 先把第一个字符加入到list1res_list[0].append(s[0])res = ""index = 1flag = 1 # 因为有list1 到 list2 到 list3,到 list2 这样的规律,我们就立一个 flag 来判断是正序还是逆序。我用 flag = 1 表示正序。count = 1 # 表示 list几while index < len(s):if flag == 1:res_list[count].append(s[index])if index % (numRows - 1) == 0:index += 1flag = -flag count -= 1'''何时从正序到逆序(或是从逆序到正序)我们又是找规律,发现当 index 是 (numrows-1) 的倍数时转换。这也是把index = 0 特别讨论的原因,0 % 任何数 == 0,但实际上index == 0 顺序并不改变'''else:index += 1count += 1else:res_list[count].append(s[index])if index % (numRows - 1) == 0:index += 1flag = -flagcount += 1else:index += 1count -= 1for i in res_list:for j in i:res += jreturn resprint(convert(s, numRows))
这篇关于力扣题(6) —— z字形变换的文章就介绍到这儿,希望我们推荐的文章对编程师们有所帮助!