心得:耗時2小時多
主要是找到每乙個計算單元的起點,每個計算單元可以看成是一豎行+後面的斜坡。
豎行座標 基點+行數
斜坡座標 下一行基點-行數
由於第一行和最後一行比較特殊
第一行:下一行基點-行數 得到的是下乙個單元要計算的點,因為行數是0
最後一行:下一行基點-行數 得到的是豎行的值,不是斜坡的值。
所以要第二個加字母的操作要排掉第一行和最後一行
class solution
char sarray = s.tochararray();
int cyclelength = 2 * (numrows - 1);
stringbuilder sb = new stringbuilder(s.length());
for (int i = 0; i < numrows; i++)
currentpoint = columnpoint + cyclelength - i;
if (i != 0 && i != numrows-1 && currentpoint < sarray.length)
columnpoint += cyclelength;}}
return sb.tostring();
}}
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 輸入 s pa...
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 最後要輸出時再通過遍歷的方式拼接出結果呢?以題目中給的字串...