LeetCode P6 Z 字形變換

2021-10-09 06:53:05 字數 2677 閱讀 2018

將乙個給定字串根據給定的行數,以從上往下、從左到右進行 z 字形排列。

比如輸入字串為 「leetcodeishiring」 行數為 3 時,排列如下:

之後,你的輸出需要從左往右逐行讀取,產生出乙個新的字串,比如:「lciretoesiigedhn」。

請你實現這個將字串進行指定行數變換的函式:

string convert(string s, int numrows);

示例:

輸入: s = 「leetcodeishiring」, numrows = 3

輸出: 「lciretoesiigedhn」

輸入: s = 「leetcodeishiring」, numrows = 4

輸出: 「ldreoeiiecihntsg」

解釋:

思路找出字串按照 z 字形排列的規律

z 字形排列的第 num

rows

−1numrows-1

numrow

s−1 行,第 k

kk 個字元對應字串 s

ss 的第 k⋅n

umro

ws+(

numr

ows−

1)k \cdot numrows+(numrows-1)

k⋅numr

ows+

(num

rows

−1) 個字元 (k=

0、1、

2...

)(k = 0、1、2...)

(k=0、1

、2..

.)演算法

class

solution

int size=s.

size()

;int con=2*

(numrows-1)

; string ans;

for(

int i=

0;i++i)

for(

int j=con;j-i

=con)}}

return ans;}}

;

class

solution

int size=s.

size()

;int con=2*

(numrows-1)

; string ans;

for(

int i=

0;i++i)}}

return ans;}}

;

複雜度分析假設 n

nn 表示字串 s

ss 的長度

思路

首先建立 numrows 個空串,乙個字串對應 z 字形排列中的一行。從左到右遍歷字串 s,確定各字元在 z 字形排列中所在的行數,並按照字元所在行數,將它們尾插入各行對應的字串中,遍歷完成後,z 字形排列的各行均可得到乙個由按該行字元從左到右組成的字串,然後將這 numrows 個字串按照對應行數從上到下的順序拼接即得到結果。

演算法

class

solution

int size=s.

size()

; vector

bucket

(numrows)

;int temp;

for(

int i=

0;isize()

;++i)

else

} string ans;

for(

int i=

0;isize()

;++i)

return ans;}}

;

class

solution

int size=s.

size()

;int pos=0;

bool turnto=

false

; vector

bucket

(numrows)

;for

(int i=

0;isize()

;++i)

turnto?

++pos:

--pos;

} string ans;

for(

int i=

0;isize()

;++i)

return ans;}}

;

複雜度分析假設 n

nn 表示字串 s

ss 的長度

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...