solution.md 7.0 KB
Newer Older
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66
# 外观数列
<div class="notranslate">
    <p>给定一个正整数 <code>n</code> ,输出外观数列的第 <code>n</code> 项。</p>

    <p>「外观数列」是一个整数序列,从数字 1 开始,序列中的每一项都是对前一项的描述。</p>

    <p>你可以将其视作是由递归公式定义的数字字符串序列:</p>

    <ul>
        <li><code>countAndSay(1) = "1"</code></li>
        <li><code>countAndSay(n)</code> 是对 <code>countAndSay(n-1)</code> 的描述,然后转换成另一个数字字符串。</li>
    </ul>

    <p>前五项如下:</p>

    <pre>
    1.     1
    2.     11
    3.     21
    4.     1211
    5.     111221
    第一项是数字 1 
    描述前一项,这个数是 1 即 “ 一 个 1 ”,记作 "11"
    描述前一项,这个数是 11 即 “ 二 个 1 ” ,记作 "21"
    描述前一项,这个数是 21 即 “ 一 个 2 + 一 个 1 ” ,记作 "1211"
    描述前一项,这个数是 1211 即 “ 一 个 1 + 一 个 2 + 二 个 1 ” ,记作 "111221"
    </pre>

    <p>要 <strong>描述</strong> 一个数字字符串,首先要将字符串分割为 <strong>最小</strong> 数量的组,每个组都由连续的最多 <strong>相同字符</strong>
        组成。然后对于每个组,先描述字符的数量,然后描述字符,形成一个描述组。要将描述转换为数字字符串,先将每组中的字符数量用数字替换,再将所有描述组连接起来。</p>

    <p>例如,数字字符串 <code>"3322251"</code> 的描述如下图:</p>
    <img alt=""
        src="https://cdn.jsdelivr.net/gh/doocs/leetcode@main/solution/0000-0099/0038.Count%20and%20Say/images/countandsay.jpg"
        style="width: 581px; height: 172px;" />
    <ul>
    </ul>

    <p>&nbsp;</p>

    <p><strong>示例 1:</strong></p>

    <pre><strong>输入:</strong>n = 1
<strong><br />输出:</strong>"1"
<strong><br />解释:</strong>这是一个基本样例。
</pre>

    <p><strong>示例 2:</strong></p>

    <pre><strong>输入:</strong>n = 4
<strong><br />输出:</strong>"1211"
<strong><br />解释:</strong>
countAndSay(1) = "1"
countAndSay(2) = 读 "1" = 一 个 1 = "11"
countAndSay(3) = 读 "11" = 二 个 1 = "21"
countAndSay(4) = 读 "21" = 一 个 2 + 一 个 1 = "12" + "11" = "1211"
</pre>

    <p>&nbsp;</p>

    <p><strong>提示:</strong></p>

    <ul>
        <li><code>1 &lt;= n &lt;= 30</code></li>
    </ul>
</div>
每日一练社区's avatar
fix bug  
每日一练社区 已提交
67
<p>以下错误的选项是?</p>
68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 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 136 137 138 139 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 168 169 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 196 197 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 265 266 267 268 269 270 271 272 273
## aop
### before
```cpp
#include <bits/stdc++.h>
using namespace std;
```
### after
```cpp

int main()
{
    Solution sol;
    string res;
    int n = 4;

    res = sol.countAndSay(n);

    cout << res;
    return 0;
}
```

## 答案
```cpp
class Solution
{
public:
    string countAndSay(int n)
    {
        if (n == 1)
            return "1";
        string last = countAndSay(n - 1);
        string ans;
        int length = last.length(), cnt = 1;
        for (int i = 0; i < length; i++)
        {
            if (i + 1 == length || last[i] != last[i + 1])
            {
                ans.push_back(cnt + '0');
                ans.push_back(last[i]);
                cnt++;
            }
        }
        return ans;
    }
};
```
## 选项

### A
```cpp
class Solution
{
public:
    string countAndSay(int n)
    {
        string s = "1";
        char num[10] = {'0', '1', '2', '3', '4', '5', '6', '7', '8', '9'};
        for (int i = 1; i < n; i++)
        {
            string news = "";
            int l = s.length(), count = 0;
            char thischar = '*';
            for (int j = 0; j < l - 1; j++)
            {
                if (s[j] == s[j + 1])
                {
                    thischar = s[j];
                    count++;
                }
                else if (s[j] != s[j + 1])
                {
                    if (count == 0)
                    {
                        count = 1;
                        thischar = s[j];
                        news = news + num[count];
                        news = news + thischar;
                        count = 0;
                    }
                    else if (count != 0)
                    {
                        count++;
                        news = news + num[count];
                        news = news + thischar;
                        count = 0;
                    }
                }
            }
            if (s[l - 2] == s[l - 1])
            {
                count++;
                news = news + num[count];
                news = news + thischar;
            }
            else if (s[l - 2] != s[l - 1])
            {
                count++;
                news = news + num[count];
                news = news + s[l - 1];
            }
            s = news;
        }
        return s;
    }
};
```

### B
```cpp
class Solution
{
public:
    string countAndSay(int n)
    {
        string ans = "11";
        if (n == 1)
        {
            return "1";
        }
        else if (n == 2)
        {
            return "11";
        }
        else
        {
            for (int i = 3; i <= n; i++)
            {
                int num = 1, flag = 0;
                string temp = ans;
                char last = temp[0];
                for (int j = 1; j < temp.size(); j++)
                {
                    if (last == temp[j])
                    {
                        num++;
                    }
                    else
                    {
                        if (flag == 0)
                        {
                            ans = to_string(num) + to_string(last - '0');
                        }
                        else
                        {
                            ans += to_string(num) + to_string(last - '0');
                        }
                        flag = 1;
                        last = temp[j];
                        num = 1;
                    }
                    if (j + 1 == temp.size())
                    {
                        if (flag == 0)
                        {
                            ans = to_string(num) + to_string(last - '0');
                        }
                        else
                        {
                            ans += to_string(num) + to_string(last - '0');
                        }
                    }
                }
            }
        }
        return ans;
    }
};
```

### C
```cpp
class Solution
{
public:
    string countAndSay(int n)
    {
        if (n == 1)
        {
            return "1";
        }
        string tmp = countAndSay(n - 1);
        string result;
        int length = tmp.length();
        int m = tmp[0] - '0';
        int count = 1;
        for (int i = 1; i < length; i++)
        {
            if (m == (tmp[i] - '0'))
            {
                count++;
            }
            else
            {
                result.push_back(count + '0');
                result.push_back(m + '0');
                m = tmp[i] - '0';
                count = 1;
            }
        }
        result.push_back(count + '0');
        result.push_back(m + '0');
        return result;
    }
};
```