程序師世界是廣大編程愛好者互助、分享、學習的平台,程序師世界有你更精彩!
首頁
編程語言
C語言|JAVA編程
Python編程
網頁編程
ASP編程|PHP編程
JSP編程
數據庫知識
MYSQL數據庫|SqlServer數據庫
Oracle數據庫|DB2數據庫
 程式師世界 >> 編程語言 >> C語言 >> C++ >> C++入門知識 >> leetcode_6_ZigZag Conversion

leetcode_6_ZigZag Conversion

編輯:C++入門知識

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

思路:

想了好久,思維總是局限在二維數組,找字符串的長度和二維數組的行列數之間的某種聯系,想了好久,沒有思路。

然後,然後就上網看了一下,有一種思路說是用字符串數組即可,就想到了StringBuilder,直接Append多好,這得比二維數組高級多少啊!然後就用StringBuilder做這道題了。

代碼:

public String convert(String s, int nRows) {
        if(s==null)
        	return null;
        else if (s.equals(""))
        	return "";
        int len=s.length();
        StringBuilder resultBuilder=new StringBuilder();
        StringBuilder []sBuilder=new StringBuilder[nRows];
        for(int i=0;i=1;j--)
        	{
        		if(i==len)
        			break;
        		sBuilder[j].append(s.charAt(i));
        		i++;
        	}
        }
        for(i=0;i

結果:



  1. 上一頁:
  2. 下一頁:
Copyright © 程式師世界 All Rights Reserved