9. 回文数
Posted yuhong1103
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了9. 回文数相关的知识,希望对你有一定的参考价值。
1 class Solution 2 { 3 public: 4 bool isPalindrome(int x) 5 { 6 if(x < 0) return false; 7 vector<int> nums; 8 while(x) 9 { 10 nums.push_back(x % 10); 11 x /= 10; 12 } 13 int n = nums.size(); 14 for(int i = 0;i < n;i ++) 15 { 16 if(nums[i] != nums[n - i - 1]) return false; 17 } 18 return true; 19 } 20 };
以上是关于9. 回文数的主要内容,如果未能解决你的问题,请参考以下文章