solution.md 2.8 KB
Newer Older
1
# 回文数
F
fix bug  
feilong 已提交
2

3
<p>给你一个整数 <code>x</code> ,如果 <code>x</code> 是一个回文整数,返回 <code>true</code> ;否则,返回 <code>false</code></p><p>回文数是指正序(从左向右)和倒序(从右向左)读都是一样的整数。例如,<code>121</code> 是回文,而 <code>123</code> 不是。</p><p> </p><p><strong>示例 1:</strong></p><pre><strong>输入:</strong>x = 121<strong><br />输出:</strong>true</pre><p><strong>示例 2:</strong></p><pre><strong>输入:</strong>x = -121<strong><br />输出:</strong>false<strong><br />解释:</strong>从左向右读, 为 -121 。 从右向左读, 为 121- 。因此它不是一个回文数。</pre><p><strong>示例 3:</strong></p><pre><strong>输入:</strong>x = 10<strong><br />输出:</strong>false<strong><br />解释:</strong>从右向左读, 为 01 。因此它不是一个回文数。</pre><p><strong>示例 4:</strong></p><pre><strong>输入:</strong>x = -101<strong><br />输出:</strong>false</pre><p> </p><p><strong>提示:</strong></p><ul>	<li><code>-2<sup>31</sup> <= x <= 2<sup>31</sup> - 1</code></li></ul><p> </p><p><strong>进阶:</strong>你能不将整数转为字符串来解决这个问题吗?</p>
每日一练社区's avatar
每日一练社区 已提交
4
<p>以下<span style="color:red">错误</span>的选项是?</p>
F
fix bug  
feilong 已提交
5

6
## aop
F
fix bug  
feilong 已提交
7

8
### before
F
fix bug  
feilong 已提交
9

10 11 12 13 14
```cpp
#include <bits/stdc++.h>
using namespace std;
```
### after
F
fix bug  
feilong 已提交
15

16 17 18 19 20 21 22 23 24 25 26
```cpp
int main()
{
    Solution sol;
    cout << sol.isPalindrome(1121) << endl;
    return 0;
}

```

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

28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45
```cpp
class Solution
{
public:
    bool isPalindrome(int x)
    {
        string s = to_string(x);
        for (int i = 0; i < s.length(); ++i)
        {
            if (s[i] != s[s.length() - i])
                return false;
        }
        return true;
    }
};
```
## 选项

F
fix bug  
feilong 已提交
46

47
### A
F
fix bug  
feilong 已提交
48

49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73
```cpp

class Solution
{
public:
    bool isPalindrome(int x)
    {
        if (x < 0)
            return false;
        double sum;
        int m = x;
        while (x)
        {
            sum = sum * 10 + x % 10;
            x = x / 10;
        }
        if (m == sum)
            return true;
        else
            return false;
    }
};
```

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

75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94
```cpp
class Solution
{
public:
    bool isPalindrome(int x)
    {
        int midrev = 0;
        if (x < 0 || (x % 10 == 0 && x != 0))
            return false;
        while (x > midrev)
        {
            midrev = midrev * 10 + x % 10;
            x /= 10;
        }
        return midrev == x || midrev / 10 == x;
    }
};
```

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

96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112
```cpp
class Solution
{
public:
    bool isPalindrome(int x)
    {
        long rev;
        if (x < 0)
            return false;
        string str_x = to_string(x);
        std::reverse(str_x.begin(), str_x.end());
        stringstream out(str_x);
        out >> rev;
        return x == rev;
    }
};
```