leetcode 中等 6 Z 字形變換

2021-10-18 19:21:24 字數 1450 閱讀 4835

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

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

p   a   h   n

a p l s i i g

y i r

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

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

string convert(string s, int numrows);

示例 1:

輸入:s = "paypalishiring", numrows = 3

輸出:"pahnaplsiigyir"

示例 2:

輸入:s = "paypalishiring", numrows = 4

輸出:"pinalsigyahrpi"

解釋:p i n

a l s i g

y a h r

p i

示例 3:

輸入:s = "a", numrows = 1

輸出:"a"

1 <= s.length <= 1000

s 由英文本母(小寫和大寫)、',' 和 '.' 組成

1 <= numrows <= 1000

class

solution

if(indexofs>=s.

length()

)break

; indexofrow-=2;

int up = numrows-2;

while

(up>0)

} string re ="";

for(string a:strs)

return re;

}}

stringbuilder 要比直接的string+ 快一倍的時間

class

solution

stringbuilder ret =

newstringbuilder()

;for

(stringbuilder row : rows) ret.

(row)

;return ret.

tostring()

;}}

沒看懂

6 Z 字形變換 leetcode

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

力扣 6 Z 字形變換 中等

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

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