Z 字形变换
2020-04-14 16:00:46来源:博客园 阅读 ()
Z 字形变换
题目要求:将一个给定字符串根据给定的行数,以从上往下、从左到右进行 Z 字形排列。
今天的题目是一道模拟题,直接对目标情况进行模拟即可,虽然是两层循环嵌套,但是实际时间复杂度为O(n)。代码如下:
#include <cstdio> #include <iostream> #include <string> #include <vector> #include <algorithm> using namespace std; string convert(string s, int numRows); int main() { string s; cin >> s; int num; cin >> num; cout << convert(s,num); return 0; } string convert(string s, int numRows) { if (numRows == 1) return s; string ans = s; int len = s.length(); int index = 0; for (int j = 0; j < numRows; ++j) { int i = 0; while( i < (len / (numRows * 2 - 2) + 1) && (i * (numRows * 2 - 2) + j) < len) { if (j == 0 || j == numRows - 1) { ans[index] = s[i * (numRows * 2 - 2) + j]; index++; } else { ans[index] = s[i * (numRows * 2 - 2) + j]; index++; if(((i + 1) * (numRows * 2 - 2) - j) < len) { ans[index] = s[(i + 1) * (numRows * 2 - 2) - j]; index++; } } ++i; } } return ans; }
原文链接:https://www.cnblogs.com/gxyssd/p/12699357.html
如有疑问请与原作者联系
标签:
版权申明:本站文章部分自网络,如有侵权,请联系:west999com@outlook.com
特别注意:本站所有转载文章言论不代表本站观点,本站所提供的摄影照片,插画,设计作品,如需使用,请与原作者联系,版权归原作者所有
- 矩阵乘法(六):几何变换 2019-09-08
- 剑指offer59:按之字形顺序打印二叉树:[[1], [3,2], [4,5,6 2019-08-31
- 201412-2 Z字形扫描(c语言) 2019-08-16
- BFS(二):数的变换 2019-08-16
- #leetcode刷题之路6- Z 字形变换 2019-02-27
IDC资讯: 主机资讯 注册资讯 托管资讯 vps资讯 网站建设
网站运营: 建站经验 策划盈利 搜索优化 网站推广 免费资源
网络编程: Asp.Net编程 Asp编程 Php编程 Xml编程 Access Mssql Mysql 其它
服务器技术: Web服务器 Ftp服务器 Mail服务器 Dns服务器 安全防护
软件技巧: 其它软件 Word Excel Powerpoint Ghost Vista QQ空间 QQ FlashGet 迅雷
网页制作: FrontPages Dreamweaver Javascript css photoshop fireworks Flash