字符串,Z 字形变换
1. 题目描述
难易度:中等
比如输入字符串为 “LEETCODEISHIRING” 行数为 3 时,排列如下:
L C I R
E T O E S I I G
E D H N
之后,你的输出需要从左往右逐行读取,产生出一个新的字符串,比如:“LCIRETOESIIGEDHN”。
请你实现这个将字符串进行指定行数变换的函数:
string convert(string s, int numRows);
示例 1:
输入: s = “LEETCODEISHIRING”, numRows = 3
输出: “LCIRETOESIIGEDHN”
示例 2:
输入: s = “LEETCODEISHIRING”, numRows = 4
输出: “LDREOEIIECIHNTSG”
解释:
L D R
E O E I I
E C I H N
T S G
来源:力扣(LeetCode)
链接:https://leetcode-cn.com/problems/zigzag-conversion
2. 思路分析
- 创建字符串数组arr
- 定义索引index,循环遍历字符串s
- 索引index从0增加到numRows,再从numRows减小到0
- 循环此操作,依次将遍历到的字符拼接到index所对应数组位置元素后
- 遍历arr,取出最终的结果
- 详细步骤见代码
3. 代码演示
/**
* @Description TODO
* @Author YunShuaiWei
* @Date 2020/6/21 16:33
* @Version
**/
public class Solution {
public static void main(String[] args) {
Solution s = new Solution();
String s1 = s.convert("ABC", 4);
System.out.println("ABC".equals(s1));
}
public String convert(String s, int numRows) {
if (s == null || numRows < 2 || s.length() < 3) {
return s;
}
String[] arr = new String[numRows];
int index = 0;
//用于记录字符串s的索引
int sIndex = 0;
while (true) {
for (int i = index; i < numRows && sIndex < s.length(); i++) {
arr[i] += s.charAt(sIndex++);
index++;
}
if (sIndex >= s.length()) {
break;
}
index--;
for (int i = index - 1; i > 0 && sIndex < s.length(); i--) {
arr[i] += s.charAt(sIndex++);
index--;
}
index--;
if (sIndex >= s.length()) {
break;
}
}
String result = "";
for (int i = 0; i < numRows; i++) {
if (arr[i] != null) {
//截取字符串,去掉前面索引0-4:null
result += arr[i].substring(4, arr[i].length());
}
}
return result;
}
}