本文主要是介绍leetcode--zigzag-conversion,希望对大家解决编程问题提供一定的参考价值,需要的开发者们随着小编来一起学习吧!
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)
P A H N
A P L S I I G
Y I R
And then read line by line:“PAHNAPLSIIGYIR”
Write the code that will take a string and make this conversion given a number of rows:
string convert(string text, int nRows);
convert(“PAYPALISHIRING”, 3)should return"PAHNAPLSIIGYIR".
思路:
1.把它转字符数组,并且建立带有stringBuilder的字符串的数组
2.开始创建变量。遍历数组把按从上到下,和从下到上分别的添加
3.遍历的字符串数组,把它存到数组中第一个元素中。
public class Solution {public String convert(String s, int nRows) {char[] c=s.toCharArray();int len=c.length;//数组stringbuilder--数组中的每一个是StringBuilder[] sb=new StringBuilder[nRows];for(int i=0;i<sb.length;i++){sb[i]=new StringBuilder();}int i=0;while(i<len){for(int idx=0;idx<nRows && i<len;idx++){//从上到下sb[idx].append(c[i++]);}//2for(int idx=nRows-2;idx>= 1&& i<len;idx--){//从下到上sb[idx].append(c[i++]);} }for(int idx=1;idx<sb.length;idx++){sb[0].append(sb[idx]);}return sb[0].toString();}
}
这篇关于leetcode--zigzag-conversion的文章就介绍到这儿,希望我们推荐的文章对编程师们有所帮助!