题目描述将一个给定字符串根据给定的行数,以从上往下、从左到右进行 Z 字形排列。 比如输入字符串为 “LEETCODEISHIRING” 行数为 3 时,排列如下: L C I RE T O E S I I GE D H N123之后,你的输出需要从左往右逐行读取,产生出一个新的字符串,比如:“LC ...
分类:
其他好文 时间:
2019-06-11 09:41:21
阅读次数:
140
这道题比较简单,观察清楚规律后很快可以写出来。 但是用go写的版本,总是答案错误,本地无问题。后用Java重写。 ...
分类:
其他好文 时间:
2019-06-06 21:33:51
阅读次数:
115
人的生活是套路化的,人活得越久,被套路化的概率就越大。普通百姓的生活都如同一个模板刻出来的。 一旦生活微调,我们会突然发现原来几十年的认知有问题,如同重获新生的感觉。譬如:早起,当我们每天早起一小时,会发现这一个小时可以做很多事情,可以运动后洗个澡,可以阅读或者做点美妙的早餐,我们会觉得,是在享受时 ...
分类:
其他好文 时间:
2019-05-31 23:51:13
阅读次数:
140
Qt 5.10Qt BluetoothBluetooth Low Energy Heart Rate Game Qt 5.10.0 Reference Documentation ContentsRunning the ExampleVisual TourBluetooth Low Energy H ...
分类:
其他好文 时间:
2019-05-26 23:39:56
阅读次数:
229
Unleashing Your True PotentialIt’s easy to let life’s challenges sap your energy, dissipate your motivation and give you a pessimistic outlook, but th ...
分类:
其他好文 时间:
2019-05-15 09:59:15
阅读次数:
145
题目链接:(https://leetcode cn.com/problems/zigzag conversion/) 题目描述: 将一个给定字符串根据给定的行数,以从上往下、从左到右进行 Z 字形排列。 比如输入字符串为 行数为 3 时,排列如下: 之后,你的输出需要从左往右逐行读取,产生出一个新的 ...
分类:
其他好文 时间:
2019-04-17 16:34:13
阅读次数:
135
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 ...
分类:
其他好文 时间:
2019-04-14 10:03:07
阅读次数:
165
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 ...
分类:
其他好文 时间:
2019-04-04 10:01:03
阅读次数:
153
1 #include <stdio.h> 2 #include <stdlib.h> 3 #include "SeqStack.h" 4 5 void conversion(int); 6 SeqStack seq; 7 int main() 8 { 9 int n; 10 scanf("%d",& ...
分类:
编程语言 时间:
2019-03-13 00:01:00
阅读次数:
266
每周一个 Algorithm,Review 一篇英文文章,总结一个工作中的技术 Tip,以及 Share 一个传递价值观的东西! Algorithm: 学习算法 题目:https://leetcode.com/problems/zigzag-conversion/ 解题过程: 刚开始没看懂什么意思, ...
分类:
编程语言 时间:
2019-02-11 15:34:51
阅读次数:
171