码迷,mamicode.com
首页 > 其他好文 > 详细

LeetCode 6 ZigZag Conversion

时间:2016-09-02 23:12:12      阅读:196      评论:0      收藏:0      [点我收藏+]

标签:

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".

 

思路:

可以设立与行数相同的String数组,然后通过一个循环变量遍历整个字符串的时候将对应的字符加入到对应的字符串中。单次循环内主要有两个步骤:一为向下的遍历,从0到nRows - 1;二为向斜上的遍历,从nRows - 2到1.这样就可以成功遍历整个字符串。另外,考虑到较多的字符串拼接,可以用StringBuffer类或者StringBuilder类代替String类,减小开销。

 

解法:

 1 public class Solution
 2 {
 3     public String convert(String s, int numRows)
 4     {
 5         if(numRows == 1)
 6             return s;
 7 
 8         StringBuffer[] strbuf = new StringBuffer[numRows];
 9         for(int i = 0; i < numRows; i++)
10             strbuf[i] = new StringBuffer();
11 
12         char[] sArray = s.toCharArray();
13         int i = 0;
14 
15         while(i < sArray.length)
16         {
17             for(int j = 0; j < numRows && i < sArray.length; j++)
18                 strbuf[j].append(sArray[i++]);
19             for(int j = numRows - 2; j >0 && i < sArray.length; j++)
20                 strbuf[j].append(sArray[i++]);
21         }
22 
23         for(int i = 1; i < numRows; i++)
24             strbuf[0].append(strbuf[i]);
25 
26         return strbuf[0].toString();
27     }
28 }

 

LeetCode 6 ZigZag Conversion

标签:

原文地址:http://www.cnblogs.com/wood-python/p/5835839.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!