LeetCode 6 Z字形變換

2021-08-20 07:27:40 字數 1620 閱讀 5110

將字串"paypalishiring"以z字形排列成給定的行數:

p     a     h     n

a p l s i

i g

y i r

之後從左往右,逐行讀取字元:」pahnaplsiigyir」

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

string convert(string s, int numrows);
輸入: s = 「paypalishiring」, numrows = 3

輸出: 「pahnaplsiigyir」

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

輸出: 「pinalsigyahrpi」

解釋:

p i

na l s i g

y a h r

p i

這是乙個找規律題,每次字母差是有規律的

第一行字母之間差為2n - 2

第二行子母之間差為2n - 42交替

…… 倒數第三行字母間差為42n - 6交替

倒數第二行字母間差為22n - 4交替

倒數第一行字母間差為2n - 2

總結一下規律,除了第一行和最後一行,每次交替的值的和為2n - 2,第一行和最後一行為2n - 2,每一行第一次相差的值比前一行少2

char* convert(char* s, int numrows) 

assert(ret);

char* cur = ret;

char* get = s;

int row_count = numrows * 2 - 2;//增量一直在變,總結一下規律

//假設numrows傳入為n,可以畫圖找規律

//第一行增量為2n-2

//第二行增量為2n-4,2依次交替

//第三行增量為2n-6,4依次交替

//……每行增量減少2,直至增量變為2

//第n-1行增量為2,2n-4依次交替

//第n行增量比較特殊,為2n-2

int increment = numrows * 2;//每次的增量

int increment_tmp = 0;//作為增量的臨時儲存變數

for (int i = 0; i < numrows; i++)

else

if (increment == 2)

increment_tmp = increment;

while (get - s < size - 1)}}

*cur = '\0';

return ret;

}

leetcode 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 示例 1 輸入...

LeetCode 6 Z字形變換

把整個問題拆解為 儲存 取 的兩個過程 通過觀察我發現的是,當numrows為3時,兩列之間的數字的數目為1 當numrows為4時,兩列之間的數字的數目為2,以此類推。那麼,可不可以將每一列都存起來 col 兩列之間的數字也存起來 gap 最後要輸出時再通過遍歷的方式拼接出結果呢?以題目中給的字串...

LeetCode 6 Z字形變換

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