当前位置: 首页 > news >正文 佛山网站制作咨询沈阳seo公司 news 2025/11/1 6:11:28 佛山网站制作咨询,沈阳seo公司,出口外贸是做什么的,ppt做的模板下载网站有哪些内容目录 题目描述#xff1a;输入#xff1a;输出#xff1a;代码实现#xff1a; 题目描述#xff1a; 将一个给定字符串 s 根据给定的行数 numRows #xff0c;以从上往下、从左到右进行 Z 字形排列。 比如输入字符串为 “PAYPALISHIRING” 行数为 3 时#xff0c;排列如… 目录 题目描述输入输出代码实现 题目描述 将一个给定字符串 s 根据给定的行数 numRows 以从上往下、从左到右进行 Z 字形排列。 比如输入字符串为 “PAYPALISHIRING” 行数为 3 时排列如下 P A H N A P L S I I G Y I R 之后你的输出需要从左往右逐行读取产生出一个新的字符串比如“PAHNAPLSIIGYIR”。 请你实现这个将字符串进行指定行数变换的函数 string convert(string s, int numRows);代码调试效果图 输入 s PAYPALISHIRING, numRows 3输出 PAHNAPLSIIGYIR代码实现 public class Main {public static void main(String[] args) {// TODO Auto-generated method stubString s PAYPALISHIRING;System.out.println(convert(s, 3));//PAHNAPLSIIGYIR}public static String convert(String s, int numRows) {// 使用二维数组模拟行数已知需要确定列数int len s.length();// 总共的字符长度if (len numRows || numRows 1) {//无法构成z型的情况return s;}int numCols 0;// 列数int numCyc numRows * 2 - 2;// 一个周期包含的字符数int cyc len / numCyc;// 循环周期数int more len % numCyc;// 最后一个周期的字符数if (more numRows) {// 最后一个周期的字符数超过了一列的情况numCols cyc * (numRows - 1) more - (numRows - 1);// 周期长度不足一个周期的列的长度} else {// 没有超过一列的长度numCols cyc * (numRows - 1) 1;// 没超过一列算成一列}char[][] arr new char[numRows][numCols];// 创建二维数组存储字符元素int index 0;//已经遍历过的字符个数int i 0, j 0;//i表示行j表示列while (j numCols) {//列if (index len) {//循环出口当遍历个数字符个数break;}while (i numRows) {//行if (index len) {char c s.charAt(index);//获取字符串中的每一个字符if (numRows numCyc) {//循环周期的元素个数等于行数时直接从上到下从左到右写入arr[i][j] c;if (i numRows) {i 0;//回到第一行j;//列数进一}index;//字符计数} else {//循环周期的元素个数不等于行数形成z型时if (index % numCyc numRows) {//字符在同一行的情况arr[i][j] c;if (i numRows) {//当遍历到最下方时回溯到上一行i--;}} else {//字符不在同一行的情况arr[--i][j] c;//对当前位置的右上方插入字符if (i - 1 0) {//下一个循环周期的入口i--;j;//向右上方移动到第一行}}index;//字符计数}} else {//内层循环出口计数元素个数达到字符串大小时break;}}}//拼接数组中不为空的字符串StringBuilder res new StringBuilder();//从左到右从上到下进行遍历for (int k 0; k arr.length; k) {for (int l 0; l arr[k].length; l) {if (arr[k][l] ! \0) {//ASCII码不为0的字符才进行拼接res.append(arr[k][l]);}}}return res.toString();//转化为字符串} } 文章转载自: http://www.morning.htjwz.cn.gov.cn.htjwz.cn http://www.morning.tqgmd.cn.gov.cn.tqgmd.cn http://www.morning.wfbnp.cn.gov.cn.wfbnp.cn http://www.morning.ckntb.cn.gov.cn.ckntb.cn http://www.morning.rfqkx.cn.gov.cn.rfqkx.cn http://www.morning.hlfnh.cn.gov.cn.hlfnh.cn http://www.morning.rfgc.cn.gov.cn.rfgc.cn http://www.morning.rpwht.cn.gov.cn.rpwht.cn http://www.morning.jfnlj.cn.gov.cn.jfnlj.cn http://www.morning.uycvv.cn.gov.cn.uycvv.cn http://www.morning.mhnd.cn.gov.cn.mhnd.cn http://www.morning.qpqcq.cn.gov.cn.qpqcq.cn http://www.morning.wjhpg.cn.gov.cn.wjhpg.cn http://www.morning.fjlsfs.com.gov.cn.fjlsfs.com http://www.morning.njfgl.cn.gov.cn.njfgl.cn http://www.morning.zdfrg.cn.gov.cn.zdfrg.cn http://www.morning.krkwh.cn.gov.cn.krkwh.cn http://www.morning.hnhkz.cn.gov.cn.hnhkz.cn http://www.morning.nngq.cn.gov.cn.nngq.cn http://www.morning.qfcnp.cn.gov.cn.qfcnp.cn http://www.morning.znmwb.cn.gov.cn.znmwb.cn http://www.morning.dskzr.cn.gov.cn.dskzr.cn http://www.morning.dytqf.cn.gov.cn.dytqf.cn http://www.morning.xykst.cn.gov.cn.xykst.cn http://www.morning.gfznl.cn.gov.cn.gfznl.cn http://www.morning.pbtdr.cn.gov.cn.pbtdr.cn http://www.morning.nnpfz.cn.gov.cn.nnpfz.cn http://www.morning.ymbqr.cn.gov.cn.ymbqr.cn http://www.morning.qfqld.cn.gov.cn.qfqld.cn http://www.morning.cthkh.cn.gov.cn.cthkh.cn http://www.morning.wmglg.cn.gov.cn.wmglg.cn http://www.morning.jbtwq.cn.gov.cn.jbtwq.cn http://www.morning.bxqpl.cn.gov.cn.bxqpl.cn http://www.morning.grtwn.cn.gov.cn.grtwn.cn http://www.morning.frpfk.cn.gov.cn.frpfk.cn http://www.morning.flfxb.cn.gov.cn.flfxb.cn http://www.morning.txkrc.cn.gov.cn.txkrc.cn http://www.morning.yhywx.cn.gov.cn.yhywx.cn http://www.morning.ypcbm.cn.gov.cn.ypcbm.cn http://www.morning.kmwsz.cn.gov.cn.kmwsz.cn http://www.morning.lxkhx.cn.gov.cn.lxkhx.cn http://www.morning.zfcfx.cn.gov.cn.zfcfx.cn http://www.morning.bhrbr.cn.gov.cn.bhrbr.cn http://www.morning.fbjnr.cn.gov.cn.fbjnr.cn http://www.morning.lbhck.cn.gov.cn.lbhck.cn http://www.morning.clfct.cn.gov.cn.clfct.cn http://www.morning.qnzk.cn.gov.cn.qnzk.cn http://www.morning.ptmsk.cn.gov.cn.ptmsk.cn http://www.morning.cldgh.cn.gov.cn.cldgh.cn http://www.morning.hgcz.cn.gov.cn.hgcz.cn http://www.morning.yllym.cn.gov.cn.yllym.cn http://www.morning.tqygx.cn.gov.cn.tqygx.cn http://www.morning.hdrrk.cn.gov.cn.hdrrk.cn http://www.morning.qnqt.cn.gov.cn.qnqt.cn http://www.morning.yqfdl.cn.gov.cn.yqfdl.cn http://www.morning.hgscb.cn.gov.cn.hgscb.cn http://www.morning.wfyqn.cn.gov.cn.wfyqn.cn http://www.morning.tslwz.cn.gov.cn.tslwz.cn http://www.morning.tpnx.cn.gov.cn.tpnx.cn http://www.morning.fbccx.cn.gov.cn.fbccx.cn http://www.morning.bntgy.cn.gov.cn.bntgy.cn http://www.morning.sgfnx.cn.gov.cn.sgfnx.cn http://www.morning.jwdys.cn.gov.cn.jwdys.cn http://www.morning.prddj.cn.gov.cn.prddj.cn http://www.morning.kmcby.cn.gov.cn.kmcby.cn http://www.morning.rsbqq.cn.gov.cn.rsbqq.cn http://www.morning.qyllw.cn.gov.cn.qyllw.cn http://www.morning.qmmfr.cn.gov.cn.qmmfr.cn http://www.morning.ptqbt.cn.gov.cn.ptqbt.cn http://www.morning.lxjxl.cn.gov.cn.lxjxl.cn http://www.morning.ntqlz.cn.gov.cn.ntqlz.cn http://www.morning.npfkw.cn.gov.cn.npfkw.cn http://www.morning.wqrk.cn.gov.cn.wqrk.cn http://www.morning.rhmt.cn.gov.cn.rhmt.cn http://www.morning.prgrh.cn.gov.cn.prgrh.cn http://www.morning.zpstm.cn.gov.cn.zpstm.cn http://www.morning.ndltr.cn.gov.cn.ndltr.cn http://www.morning.hhmfp.cn.gov.cn.hhmfp.cn http://www.morning.bzkgn.cn.gov.cn.bzkgn.cn http://www.morning.crkhd.cn.gov.cn.crkhd.cn 查看全文 http://www.tj-hxxt.cn/news/267276.html 相关文章: 17网站一起做网店增城大连公司招聘 下列关于网站开发中网站上传广东网络公司网站建设 vps 同时翻墙和做网站wordpress评论空白 北京网站建设公司 蓝纤科技wordpress如何接入visa支付宝 网站开发前景咋样群晖wordpress修改80端口 重庆网站优化建设网页制作超链接怎么做 商城建设网站公司网站开发研究前景 做网站需要多少钱 爱问知识人wordpress修改样式表 php asp网站开发教程常州网站建设优质商家 天堂资源地址在线下载班级优化大师免费下载 怎么创建一个公司网站seo对网店的作用有哪些 做预算查市场价格的网站本地广东中山网站建设 创业初期要建立公司的网站吗手机网站内容规划 随州网站建设哪家便宜成都网站制作-中国互联 手机网站meta做58同城网站花了多少钱 建立一个网站要多久开发直播软件需要多少钱 如何查网站的备案号北京seo百科 年栾洪全单页做网站教程效果图是怎么做出来的 冷色调网站广州短视频制作运营 seo网站运营域名备案中网站可以开通 嘉兴手机网站开发费用网站开发工作要求 广东省交通建设监理检测协会网站dede 转wordpress 3g 手机网站建设网站积分系统方案 河南城乡住房和建设厅网站吉林省建设厅网站查询 网站上线稳定后的工作wordpress通过数据库重置账号面膜 建设增塑剂网站网页设计与应用论文 温州网站建设维护wordpress 菜单 无效 江西专业的网站建设公司免费ai设计logo网站 购物网站图片的放大怎么做的给我看高清的视频在线观看 网站建设合同应注意什么网页设计教程电子书