博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
LeetCode ZigZag Conversion
阅读量:4993 次
发布时间:2019-06-12

本文共 1345 字,大约阅读时间需要 4 分钟。

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   NA P L S I I GY   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".

 

0       8       16      
1     7 9     15 17      
2   6   10   14   18      
3 5     11 13     19      
4       12       20      

 

分两次循环,第一次是列,第二次是斜线。

java需使用stringbuffer才不会超时,使用string超时了。

1 public class Solution { 2     public String convert(String s, int nRows) { 3         if (nRows==1) { 4             return s; 5         } 6         7         StringBuffer[]    reBuffers=new StringBuffer[nRows]; 8         for (int i = 0; i < reBuffers.length; i++) { 9             reBuffers[i]=new StringBuffer();10         }11         int i=0,j=0,C=nRows-2;12         while (i
0;j--) {20 21 reBuffers[j].append(s.charAt(i++));22 23 }24 25 }26 27 StringBuffer res=new StringBuffer();28 for (int k = 0; k < nRows; k++) {29 res.append(reBuffers[k]);30 }31 return res.toString();32 }33 }

 

转载于:https://www.cnblogs.com/birdhack/p/4066174.html

你可能感兴趣的文章
php RSA 简单实现
查看>>
python_Day4
查看>>
mongo3.0用户设置转(3)
查看>>
2018.3 强网杯 部分writeup
查看>>
架构师速成6.18-初中书单资料推荐
查看>>
linux系统的安装
查看>>
Java设计模式菜鸟系列(十三)建模和实现状态模式
查看>>
《Hadoop》对于高级编程Hadoop实现构建企业级安全解决方案
查看>>
android ndk通过遍历和删除文件
查看>>
Notification(一个)——使用演示样本的基础知识
查看>>
《算法导论》为什么经典
查看>>
windows如何能在“运行”框输入名称就启动相应的软件
查看>>
修复反编译资源文件及批量修复程序源码
查看>>
CODEVS 1217 借教室
查看>>
VM ware 安装时候的一些坑和解决办法
查看>>
【原】最长上升子序列——动态规划
查看>>
26. Remove Duplicates from Sorted Array
查看>>
使用weak property声明Outlet
查看>>
RN开发-Navigator
查看>>
innodb二进制文件相关的参数
查看>>