首页 > 代码库 > [Leetcode]Palindrome Number
[Leetcode]Palindrome Number
Determine whether an integer is a palindrome. Do this without extra space.
这题貌似解法挺多,直接用简单的把数倒置,没有考虑数据溢出的问题,如需解决可以把转置数设为long long即可。另外方法可以用到前后匹配、递归比较等。
1 class Solution { 2 public: 3 bool isPalindrome(int x) { 4 int a=x; 5 int n=0; 6 if(x<0) 7 return false; 8 while(x) 9 {10 n*=10;11 n+=x%10;12 x/=10;13 }14 if(n==a)15 return true;16 else return false;17 }18 };
[Leetcode]Palindrome Number
声明:以上内容来自用户投稿及互联网公开渠道收集整理发布,本网站不拥有所有权,未作人工编辑处理,也不承担相关法律责任,若内容有误或涉及侵权可进行投诉: 投诉/举报 工作人员会在5个工作日内联系你,一经查实,本站将立刻删除涉嫌侵权内容。