leetcode第6題 Z字型變換

2021-09-29 05:57:35 字數 716 閱讀 7739

將乙個給定字串根據給定的行數,以從上往下、從左到右進行 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);

示例 1:

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

輸出: 「lciretoesiigedhn」

示例 2:

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

輸出: 「ldreoeiiecihntsg」

解釋:l d r

e o e i i

e c i h n

t s g

class solution

stringbuilder res = new stringbuilder()

;for

(stringbuilder row

(row)

; return res.tostring()

;}}

leetcode 6 Z字型變換

找規律,將z字型分割,例如 這樣就很容易看出來規律,先建numrows個字串代表每一行的字串 每一次我們只要知道第一行的應當插入的字元下標,自然就能知道下面多行的下標,而第一行前乙個字元和後乙個字元的下標的差值很容易看出來,就是2 x numrows 1 知道了第一行下乙個應當插入的字元下標,反著往...

Z字型變換 LeetCode6

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

Leetcode記錄 6題 z字形變換

思路 總共n行,新建n個stringbuilder,依次從上到下給每個stringbuilder賦值,每兩列一組,前面一列先從上到下依次賦值,後面一列從倒數第二行依次向上賦值到第二行結束。最後將n個字串相連。時間複雜度 o n n是字串長度。class solution int index 0 wh...