ICode9

精准搜索请尝试: 精确搜索
首页 > 其他分享> 文章详细

6. Z 字形变换_ZigZag Conversion

2019-09-06 19:38:45  阅读:362  来源: 互联网

标签:count down Conversion 字形 res up ZigZag numRows str


ZigZag Conversion

将一个给定字符串根据给定的行数,以从上往下、从左到右进行 Z 字形排列。

题目来源:力扣(LeetCode)链接:https://leetcode-cn.com/problems/zigzag-conversion

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)

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:

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

python3:

class Solution:
    def convert(self, s: str, numRows: int) -> str:
        str_len = len(s)
        convert_list = [ [''] * str_len for i in range(numRows)]
        i = 0
        j = 0
        count = 0
        up_to_down = True
        while count < str_len:
            convert_list[j][i] = s[count]
            count = count + 1
            if up_to_down:
                j = j + 1
            else:
                j = j - 1
                i = i + 1
            
            if j >= numRows:
                i = i + 1
                j = j - 2
                up_to_down = False
            elif j < 0:
                j = j + 2
                up_to_down = True
        res_str = ''
        for lists in convert_list:
            for l in lists:
                res_str = res_str + l
        return res_str

改进:

class Solution:
    def convert(self, s: str, numRows: int) -> str:
        result_list = [''] * numRows
        i = 0
        j = 0
        count = 0
        up_to_down = True
        str_len = len(s)
        while count < str_len:
            result_list[j] = result_list[j] + s[count]
            count = count + 1
            if up_to_down:
                j = j + 1
            else:
                j = j - 1
                i = i + 1
            
            if j >= numRows:
                i = i + 1
                j = j - 2
                up_to_down = False
            elif j < 0:
                j = j + 2
                up_to_down = True
        res_str = ''
        for res in result_list:
            res_str = res_str + res
        return res_str

标签:count,down,Conversion,字形,res,up,ZigZag,numRows,str
来源: https://blog.csdn.net/qq_15706279/article/details/100585359

本站声明: 1. iCode9 技术分享网(下文简称本站)提供的所有内容,仅供技术学习、探讨和分享;
2. 关于本站的所有留言、评论、转载及引用,纯属内容发起人的个人观点,与本站观点和立场无关;
3. 关于本站的所有言论和文字,纯属内容发起人的个人观点,与本站观点和立场无关;
4. 本站文章均是网友提供,不完全保证技术分享内容的完整性、准确性、时效性、风险性和版权归属;如您发现该文章侵犯了您的权益,可联系我们第一时间进行删除;
5. 本站为非盈利性的个人网站,所有内容不会用来进行牟利,也不会利用任何形式的广告来间接获益,纯粹是为了广大技术爱好者提供技术内容和技术思想的分享性交流网站。

专注分享技术,共同学习,共同进步。侵权联系[81616952@qq.com]

Copyright (C)ICode9.com, All Rights Reserved.

ICode9版权所有