Leetcode 6. Z 字形变换-中等(图)

Posted 自行车在路上

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Leetcode 6. Z 字形变换-中等(图)相关的知识,希望对你有一定的参考价值。

题目-7. 整数反转

将一个给定字符串 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);

示例 1:

输入:s = "PAYPALISHIRING", numRows = 3
输出:"PAHNAPLSIIGYIR"

示例 2:

输入:s = "PAYPALISHIRING", numRows = 4
输出:"PINALSIGYAHRPI"
解释:
P     I    N
A   L S  I G
Y A   H R
P     I

示例3:

输入:s = "A", numRows = 1
输出:"A"

提示:

1 <= s.length <= 1000
s 由英文字母(小写和大写)、',' 和 '.' 组成
1 <= numRows <= 1000

图-思路

图-Z字形

在这里插入图片描述

代码

Z字形

 public String convert(String s, int numRows) {
        if(numRows == 1)
            return s;

        StringBuilder[] res = new StringBuilder[numRows];
        for(int i = 0; i < numRows; i++)
            res[i] = new StringBuilder();

        int index = 0;
        int row = 0;
        int len = s.length();
        while(index < len){
            while(index < len && row < numRows){
                char ch = s.charAt(index++);
                res[row].append(ch);
                row++;
            }

            if(index == len)
                break;

            row = numRows - 2;

            while(index < len && row >= 0){
                char ch = s.charAt(index++);
                res[row].append(ch);
                row--;
            }

            row += 2;
        }

        StringBuilder ans = new StringBuilder();
        for(int i = 0; i < numRows; i++)
            ans.append(res[i]);

        return ans.toString();
    }		

demo下载路径

码云
在这里插入图片描述

参考

出处

6. Z 字形变换-题目

6. Z 字形变换-图片-代码

以上是关于Leetcode 6. Z 字形变换-中等(图)的主要内容,如果未能解决你的问题,请参考以下文章

每日算法/刷穿 LeetCode6. Z 字形变换(中等)

leetcode算法:6.Z 字形变换

leetcode 6: Z字形变换

LeetCode 6 Z 字形变换

LeetCode 6. Z 字形变换(中)

LeetCode 6. Z 字形变换(中)