首页 > 其他 > 详细

将字符串中的字符按Z字形排列,按行输出

时间:2019-03-14 12:37:12      阅读:584      评论:0      收藏:0      [点我收藏+]

示例1:

  Input: s = "PAYPALISHIRING", numRows = 3  

       技术分享图片

  Output: "PAHNAPLSIIGYIR"

示例2:

技术分享图片

解决方案:

    def convert(self, s, numRows):
        """
        :type s: str
        :type numRows: int
        :rtype: str
        """
        if len(s) <= numRows or numRows==1 :
            return s
        s_dict = {i:"" for i in range(numRows)}
        unit = 2*numRows - 2
        for i in range(len(s)):
            remain = i%unit
            if remain <= numRows - 1:
                s_dict[remain] += s[i]
            else:
                pos = unit - remain
                s_dict[pos] += s[i]
        out = ""
        for i in range(numRows):
            out += s_dict[i]
        return out

 

将字符串中的字符按Z字形排列,按行输出

原文:https://www.cnblogs.com/wenqinchao/p/10529461.html

(0)
(0)
   
举报
评论 一句话评论(0
关于我们 - 联系我们 - 留言反馈 - 联系我们:wmxa8@hotmail.com
© 2014 bubuko.com 版权所有
打开技术之扣,分享程序人生!