程序師世界是廣大編程愛好者互助、分享、學習的平台,程序師世界有你更精彩!
首頁
編程語言
C語言|JAVA編程
Python編程
網頁編程
ASP編程|PHP編程
JSP編程
數據庫知識
MYSQL數據庫|SqlServer數據庫
Oracle數據庫|DB2數據庫
 程式師世界 >> 編程語言 >> C語言 >> C++ >> C++入門知識 >> leetcode題解||ZigZag Conversion問題

leetcode題解||ZigZag Conversion問題

編輯:C++入門知識

leetcode題解||ZigZag Conversion問題


problem:

The string "PAYPALISHIRING" is written in a zigzag pattern on a given number 
of rows like this:
 (you may want to display this pattern in a fixed font for better legibility)

P   A   H   N
A P L S I I G
Y   I   R
And then read line by line: "PAHNAPLSIIGYIR"
Write the code that will take a string and make this conversion given a
 number of rows:

string convert(string text, int nRows);
convert("PAYPALISHIRING", 3) should return "PAHNAPLSIIGYIR".

thinking:

(1)讀懂題意,把字符串按照"Z"形重新排列,再按行鏈接起來輸出。

(2)沒有解體思路,可以列舉幾個簡單的例子尋找規律。

一: 2排的時候,1到n的排序
1 3 5 7 9 。。。
2 4 6 8 10 。。。

二: 3排的時候,1到n的排序
1 5 9 。。。
2 4 6 8 10 。。。
3 7 11 。。。

三: 4排的時候,1到n的排序
1 7 13 。。。
2 6 8 12 14 。。。
3 5 9 11 15 。。。
4 10 16 。。。

這到規律沒有?如果沒有找到, 你可以繼續寫5排的情況。很快你就可以找到規律。這是一個解決問題問題的方法。當我們遇到難纏的問題的時候,我們先考慮簡單的情形,看看能不能找到規律。這個題目,我們通過寫出來這些特殊情況,我們發現如下規律,這裡我們假設我們分成m排:
1 第i排從i開始
2 第i排兩個數的間隔是2(i-1),2(m-i)交替

code:

class Solution {
public:
    string convert(string s, int nRows) {
        int length = s.size();
        
       if((nRows==1)||(nRows>=length))
            return s;
        string result;
        for(int i=0;i

  1. 上一頁:
  2. 下一頁:
Copyright © 程式師世界 All Rights Reserved