【JAVA、C++】LeetCode 006 ZigZag Conversion

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"

解题思路:

观察题目,靠眼力寻找规律即可。如果没有读懂ZigZag的话,请移步

http://blog.csdn.net/zhouworld16/article/details/14121477

java实现:

static public String convert(String s, int nRows) {
        if (s == null || s.length() <= nRows || nRows <= 1)
            return s;
        
        StringBuffer sb = new StringBuffer();
        
        for (int i = 0; i < s.length(); i += (nRows - 1) * 2) 
            sb.append(s.charAt(i));
        
        for (int i = 1; i < nRows - 1; i++) {
            for (int j = i; j < s.length(); j += (nRows - 1) * 2) {
                sb.append(s.charAt(j));
                if (j + (nRows - i - 1) * 2 < s.length()) {
                    sb.append(s.charAt(j + (nRows - i - 1) * 2));
                }
            }
        }
        
        for (int i = nRows - 1; i < s.length(); i += (nRows - 1) * 2) 
            sb.append(s.charAt(i));
        
        return new String(sb);
    }

 C++实现如下:

 1 #include<string>
 2 using namespace std;
 3 class Solution {
 4 public:
 5     string convert(string s, int numRows) {
 6         if (s.length() <= numRows || numRows <= 1)
 7             return s;
 8 
 9         string sb;
10         for (int i = 0; i < s.length(); i += (numRows - 1) * 2)
11             sb+=s[i];
12         for (int i = 1; i < numRows - 1; i++) {
13             for (int j = i; j < s.length(); j += (numRows - 1) * 2) {
14                 sb+=s[j];
15                 if (j + (numRows - i - 1) * 2 < s.length()) 
16                     sb+=s[j + (numRows - i - 1) * 2];
17             }
18         }
19 
20         for (int i = numRows - 1; i < s.length(); i += (numRows - 1) * 2)
21             sb += s[i];
22         return sb;
23     }
24 };
原文地址:https://www.cnblogs.com/tonyluis/p/4456244.html