zoukankan      html  css  js  c++  java
  • Leetcode练习(Python):字符串类:第6题:Z 字形变换:将一个给定字符串根据给定的行数,以从上往下、从左到右进行 Z 字形排列。

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

    比如输入字符串为 "LEETCODEISHIRING" 行数为 3 时,排列如下:

    L C I R
    E T O E S I I G
    E D H N
    之后,你的输出需要从左往右逐行读取,产生出一个新的字符串,比如:"LCIRETOESIIGEDHN"。

    请你实现这个将字符串进行指定行数变换的函数:

    string convert(string s, int numRows);

    思路:

    实现的思路较简单,找到规律就好。

    程序:

    class Solution:
        def convert(self, s: str, numRows: int) -> str:
            if not s:
                return s
            if numRows == 1:
                return s
            length = len(s)
            max_interval = (numRows - 1) + (numRows - 1)
            auxiliary = ['' for _ in range(numRows)]
            result = ''
            for index in range(length):
                anchor = index % max_interval
                if anchor < numRows:
                    auxiliary[anchor] = auxiliary[anchor] + s[index]
                else:
                    anchor = max_interval - anchor
                    auxiliary[anchor] = auxiliary[anchor] + s[index]
            for index1 in auxiliary:
                result = result + index1
            return result
  • 相关阅读:
    poj 3280 Cheapest Palindrome (dp)
    hdu 4359 Easy Tree DP? ( dp )
    hdu 2844 Coins (多重背包+ 二进制优化)
    三分法 讲解
    poj 1191 棋盘分割 (dp)
    hdu 4340 Capturing a country(树形 dp) (2012 MultiUniversity Training Contest 5 )
    子类和父类的构造函数
    CreateProcess执行一个控制台程序,隐藏DOS窗口
    单个字符比较
    MFC 程序入口和执行流程
  • 原文地址:https://www.cnblogs.com/zhuozige/p/12848887.html
Copyright © 2011-2022 走看看