ÃèÊö:
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".
˼·£º
ÏëÁ˺þã¬Ë¼Î¬×ÜÊǾÖÏÞÔÚ¶þάÊý×飬ÕÒ×Ö·û´®µÄ³¤¶ÈºÍ¶þάÊý×éµÄÐÐÁÐÊýÖ®¼äµÄijÖÖÁªÏµ£¬ÏëÁ˺þã¬Ã»ÓÐ˼·¡£
È»ºó£¬È»ºó¾ÍÉÏÍø¿´ÁËһϣ¬ÓÐÒ»ÖÖ˼·˵ÊÇÓÃ×Ö·û´®Êý×é¼´¿É£¬¾ÍÏëµ½ÁË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
½á¹û£º
