solution.md 5.3 KB
Newer Older
1
# Z 字形变换
F
fix bug  
feilong 已提交
2

每日一练社区's avatar
每日一练社区 已提交
3
将一个给定字符串 `s` 根据给定的行数 `numRows` ,以从上往下、从左到右进行 Z 字形排列。
4

每日一练社区's avatar
每日一练社区 已提交
5
比如输入字符串为 `"PAYPALISHIRING"` 行数为 `3` 时,排列如下:
6

每日一练社区's avatar
每日一练社区 已提交
7 8 9 10 11 12 13 14 15 16 17 18 19 20 21
```
P   A   H   N
A P L S I I G
Y   I   R
```

之后,你的输出需要从左往右逐行读取,产生出一个新的字符串,比如:`"PAHNAPLSIIGYIR"`

请你实现这个将字符串进行指定行数变换的函数:

```c
string convert(string s, int numRows);
```

**示例 1:**
22

每日一练社区's avatar
每日一练社区 已提交
23
**输入:** s = "PAYPALISHIRING", numRows = 3
24

每日一练社区's avatar
每日一练社区 已提交
25 26
**输出:** "PAHNAPLSIIGYIR"
    
27

每日一练社区's avatar
每日一练社区 已提交
28
**示例 2:**
29

每日一练社区's avatar
每日一练社区 已提交
30
**输入:** s = "PAYPALISHIRING", numRows = 4
31

每日一练社区's avatar
每日一练社区 已提交
32
**输出:** "PINALSIGYAHRPI"
33

每日一练社区's avatar
每日一练社区 已提交
34
**解释:**
35

每日一练社区's avatar
每日一练社区 已提交
36
```
37 38 39 40
P     I    N
A   L S  I G
Y A   H R
P     I
每日一练社区's avatar
每日一练社区 已提交
41
```
每日一练社区's avatar
每日一练社区 已提交
42 43

**示例 3:**
44

每日一练社区's avatar
每日一练社区 已提交
45
**输入:** s = "A", numRows = 1
46

每日一练社区's avatar
每日一练社区 已提交
47 48
**输出:** "A"
    
49

每日一练社区's avatar
每日一练社区 已提交
50
**提示:**
51

每日一练社区's avatar
每日一练社区 已提交
52
  * `1 <= s.length <= 1000`
每日一练社区's avatar
每日一练社区 已提交
53

每日一练社区's avatar
每日一练社区 已提交
54
  * `s` 由英文字母(小写和大写)、`','``'.'` 组成
每日一练社区's avatar
每日一练社区 已提交
55

每日一练社区's avatar
每日一练社区 已提交
56
  * `1 <= numRows <= 1000`
57

每日一练社区's avatar
每日一练社区 已提交
58
<p>以下<span style="color:red">错误</span>的选项是?</p>
F
fix bug  
feilong 已提交
59

60
## aop
F
fix bug  
feilong 已提交
61

62
### before
F
fix bug  
feilong 已提交
63

每日一练社区's avatar
每日一练社区 已提交
64
```c
65 66 67
#include <bits/stdc++.h>
using namespace std;
```
每日一练社区's avatar
每日一练社区 已提交
68

69
### after
F
fix bug  
feilong 已提交
70

每日一练社区's avatar
每日一练社区 已提交
71
```c
72 73 74 75 76 77 78 79 80 81 82 83 84 85 86
int main()
{
    Solution test;

    string ret;
    string s = "LEETCODEISHIRING";
    int numrows = 3;
    ret = test.convert(s, numrows);
    cout << ret << endl;
    return 0;
}

```

## 答案
F
fix bug  
feilong 已提交
87

每日一练社区's avatar
每日一练社区 已提交
88
```c
89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135
class Solution
{
public:
    string convert(string s, int numRows)
    {
        string result;
        int num1 = numRows * 2 - 2;
        if (s.size() < 2 || num1 == 0)
        {
            result = s;
            return result;
        }
        int num = (s.size() / num1);
        string str[100];
        int count = 0;
        int i = 0;
        for (int j = 0; j < s.size(); j++)
        {
            if (count == num1)
            {
                i++;
                count = 0;
            }
            str[i].push_back(s[j]);
        }

        for (int n = 0; n < num; n++)
        {
            result.push_back(str[n][0]);
        }
        for (int m = 1; m < numRows; m++)
        {
            for (int n = 0; n < num; n++)
            {
                if (m < str[n].size())
                    result.push_back(str[n][m]);
                if ((num1 - m) < str[n].size() && m != (num1 - m))
                    result.push_back(str[n][num1 - m]);
            }
        }
        return result;
    }
};

```
## 选项

F
fix bug  
feilong 已提交
136

137
### A
F
fix bug  
feilong 已提交
138

每日一练社区's avatar
每日一练社区 已提交
139
```c
140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167
class Solution
{
public:
    string convert(string s, int numRows)
    {
        string result;
        int i = 0;
        int j = 0;
        int tem = numRows != 1 ? 2 * (numRows - 1) : 1;
        for (i = 0; i <= tem / 2; ++i)
        {
            j = i;
            while (j < s.size())
            {
                result += s[j];
                if (j % tem != 0 && j % tem != tem / 2 && j + tem - 2 * i < s.size())
                {
                    result += s[j + tem - 2 * i];
                }
                j += tem;
            }
        }
        return result;
    }
};
```

### B
F
fix bug  
feilong 已提交
168

每日一练社区's avatar
每日一练社区 已提交
169
```c
170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195
class Solution
{
public:
    string convert(string s, int numRows)
    {
        if (numRows == 1 || s.size() <= numRows)
            return s;
        vector<string> rows(numRows);
        int curRow = 0;
        bool goingDown = false;
        for (char c : s)
        {
            rows[curRow] += c;
            if (curRow == 0 || curRow == numRows - 1)
                goingDown = !goingDown;
            curRow += goingDown ? 1 : -1;
        }
        string ret;
        for (string row : rows)
            ret += row;
        return ret;
    }
};
```

### C
F
fix bug  
feilong 已提交
196

每日一练社区's avatar
每日一练社区 已提交
197
```c
198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264
class Solution
{
public:
    string convert(string s, int numRows)
    {
        if (s.size() <= numRows || numRows <= 1)
            return s;
        int len = s.size();
        vector<vector<char> > pos(len, vector<char>(numRows));
        int k = 0;
        int flag = numRows - 1;
        for (int i = 0; i < len; i++)
        {
            for (int j = 0; j < numRows; j++)
            {
                if (i % (numRows - 1) == 0 || numRows == 2)
                {
                    pos[i][j] = s[k];
                    k++;
                }
                else if (j == flag - 1)
                {
                    pos[i][j] = s[k];
                    k++;
                    flag--;
                }
                else
                    continue;
                if (k == len)
                    break;
            }
            if (k == len)
                break;
            if (flag == 1)
                flag = numRows - 1;
        }
        string res;
        for (int j = 0; j <= numRows; j++)
        {
            int count = 0;
            for (int i = 0; i < len; i++)
            {
                if (j % (numRows - 1) == 0 && pos[i][j] != '\0')
                {
                    res = res + pos[i][j];
                    i = i + numRows - 2;
                    count = 0;
                    continue;
                }
                else if (j % (numRows - 1) != 0 && pos[i][j] != '\0')
                {
                    res = res + pos[i][j];
                    count = 0;
                    continue;
                }
                else
                    count++;
                if (count >= numRows)
                    break;
            }
            if (res.size() == len)
                break;
        }
        return res;
    }
};
```