6. ZigZag Conversion

題目: 解答: 其實就是一個循環體unit=2 * numRows - 2爲單元的反覆取數,解答過程注意首尾各一個數,中間的兩個數分別是i 和 unit - i即可 代碼: class Solution { public: string convert(string s, int numRows) { if(numRows == 1) return s;
相關文章
相關標籤/搜索