6 Z 字形變換

2021-10-02 12:55:29 字數 1594 閱讀 2631

思路1:72 ms 13 mb。考慮給字串進行編號。對於「leetcodeishiring」,當行數為4時,編號為012321,不斷重複,最後根據編號(實際是行號)進行穩定排序,最終即答案。

# 淺賦值 基本的編號,後續重複

for i in

range

(len

(str)//

len(index1)+1

):index1+=basicindex

str=list

(zip

(index1,

str)

) newstring =

sorted

(str

,key=

lambda x:x[0]

) finalstring =

[x[1

]for x in newstring]

ans =

"".join(finalstring)

return ans

思路2:56 ms 13.1 mb。上面的排序過程還是比較費時。基於上面的思想,直接在遍歷字串的過程中,在對應的行加上字元即可。

6 Z字形變換

一 題目 將字串 paypalishiring 以z字形排列成給定的行數 p a h n a p l s i i g y i r之後從左往右,逐行讀取字元 pahnaplsiigyir 實現乙個將字串進行指定行數變換的函式 string convert string s,int numrows 示例...

6 Z字形變換

將字串 paypalishiring 以z字形排列成給定的行數 p a h n a p l s i i g y i r 之後從左往右,逐行讀取字元 pahnaplsiigyir 示例1 輸入 s paypalishiring numrows 3 輸出 pahnaplsiigyir 示例 2 輸入 s...

6 Z 字形變換

將乙個給定字串根據給定的行數,以從上往下 從左到右進行 z 字形排列。比如輸入字串為 leetcodeishiring 行數為 3 時,排列如下 l c i r e t o e s i i g e d h n之後,你的輸出需要從左往右逐行讀取,產生出乙個新的字串,比如 lciretoesiigedh...