g2o
Main Page
Modules
Namespaces
Classes
Files
File List
File Members
g2o
examples
9.回文数.cpp
Go to the documentation of this file.
1
/*
2
* @lc app=leetcode.cn id=9 lang=cpp
3
*
4
* [9] 回文数
5
*
6
* https://leetcode-cn.com/problems/palindrome-number/description/
7
*
8
* algorithms
9
* Easy (56.03%)
10
* Total Accepted: 82K
11
* Total Submissions: 146.4K
12
* Testcase Example: '121'
13
*
14
* 判断一个整数是否是回文数。回文数是指正序(从左向右)和倒序(从右向左)读都是一样的整数。
15
*
16
* 示例 1:
17
*
18
* 输入: 121
19
* 输出: true
20
*
21
*
22
* 示例 2:
23
*
24
* 输入: -121
25
* 输出: false
26
* 解释: 从左向右读, 为 -121 。 从右向左读, 为 121- 。因此它不是一个回文数。
27
*
28
*
29
* 示例 3:
30
*
31
* 输入: 10
32
* 输出: false
33
* 解释: 从右向左读, 为 01 。因此它不是一个回文数。
34
*
35
*
36
* 进阶:
37
*
38
* 你能不将整数转为字符串来解决这个问题吗?
39
*
40
*/
41
class
Solution
{
42
public
:
43
bool
isPalindrome
(
int
x) {
44
std::stringstream sstr;
45
sstr << x;
46
std::string str = sstr.str();
47
}
48
};
49
Solution::isPalindrome
bool isPalindrome(int x)
Definition:
9.回文数.cpp:43
Solution
Definition:
1.两数之和.cpp:27
Generated on Mon Mar 18 2019 20:14:38 for g2o by
1.8.11