6. Z字形变换 ZigZag Conversion(LeetCode)

阅读: 评论:0

6. Z字形变换 ZigZag Conversion(LeetCode)

6. Z字形变换 ZigZag Conversion(LeetCode)

题目

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)
将字符串 “PAYPALISHIRING” 以Z字形排列成给定的行数:

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:
之后从左往右,逐行读取字符:“PAHNAPLSIIGYIR”
实现一个将字符串进行指定行数变换的函数:

string convert(string s, int numRows);

Example 1:

Input: s = "PAYPALISHIRING", numRows = 3
Output: "PAHNAPLSIIGYIR"

Example 2:

Input: s = "PAYPALISHIRING", numRows = 4
Output: "PINALSIGYAHRPI"

Explanation:

P     I    N
A   L S  I G
Y A   H R
P     I
解答: Java
class Solution {public String convert(String s, int numRows) {char[] ch = s.toCharArray();int in = numRows*2,ln, sum = 2*numRows - 2;int te=-1;StringBuilder ss = new StringBuilder();ss.append("");int tt = numRows;while(tt-- != 0){in = in-2;if(in == 0){in = sum;}te++;int ff = 0;ln = in;if(ln == 0){ln = 1;}for(int i=te;i<ch.length;i+=ln){// System.out.print(ch[i]);ss.append(ch[i]);if(ff == 1 && ln < sum){ln = 2*numRows - 2 - ln;ff = 1;}// for(int j=0;j<ln-1;j++){//     System.out.print(" ");// } ff = 1;}System.out.println();}String();}
}

这个题我曾经调试了很久,反复检查,代码是正确的但系统就是判定失败。最后我终于找到了原因……不需要输出 Z 字形排列的图形,所以把代码里打印图形的代码注释掉就OK啦~

本文发布于:2024-01-28 06:47:23,感谢您对本站的认可!

本文链接:https://www.4u4v.net/it/17063956485564.html

版权声明:本站内容均来自互联网,仅供演示用,请勿用于商业和其他非法用途。如果侵犯了您的权益请与我们联系,我们将在24小时内删除。

标签:字形   ZigZag   LeetCode   Conversion
留言与评论(共有 0 条评论)
   
验证码:

Copyright ©2019-2022 Comsenz Inc.Powered by ©

网站地图1 网站地图2 网站地图3 网站地图4 网站地图5 网站地图6 网站地图7 网站地图8 网站地图9 网站地图10 网站地图11 网站地图12 网站地图13 网站地图14 网站地图15 网站地图16 网站地图17 网站地图18 网站地图19 网站地图20 网站地图21 网站地图22/a> 网站地图23