前往小程序,Get更优阅读体验!
立即前往
首页
学习
活动
专区
工具
TVP
发布
社区首页 >专栏 >【LeetCode】9. Palindrome Number

【LeetCode】9. Palindrome Number

作者头像
韩旭051
发布2020-06-23 11:04:05
2000
发布2020-06-23 11:04:05
举报
文章被收录于专栏:刷题笔记刷题笔记

Determine whether an integer is a palindrome. An integer is a palindrome when it reads the same backward as forward.

Example 1:

Input: 121 Output: true Example 2:

Input: -121 Output: false Explanation: From left to right, it reads -121. From right to left, it becomes 121-. Therefore it is not a palindrome. Example 3:

Input: 10 Output: false Explanation: Reads 01 from right to left. Therefore it is not a palindrome. Follow up:

Coud you solve it without converting the integer to a string?

来源:力扣(LeetCode) 链接:https://leetcode-cn.com/problems/palindrome-number 著作权归领扣网络所有。商业转载请联系官方授权,非商业转载请注明出处。

so easy~

代码语言:javascript
复制
class Solution {
public:
    bool isPalindrome(int x) {
        if(x<0)return false;
        string s;
        while(x>0){
            s+=(x%10+'0');
            x=x/10;
        }
        for(int i=0;i<s.size()/2;i++){
            if(s[i]!=s[s.size()-1-i]){
                return false;
            }
        }//cout<<s<<endl;
        return true;
    }
};

最快的老哥

代码语言:javascript
复制
class Solution {
public:
    bool isPalindrome(int x) {
        if(x<0) return 0;
        long xx=0,xxx=x;
        while(x>0){
            xx=xx*10+x%10;
            x/=10;
        }
        return xx==xxx?1:0;
    }
};
本文参与 腾讯云自媒体分享计划,分享自作者个人站点/博客。
原始发表:2019-12-09 ,如有侵权请联系 cloudcommunity@tencent.com 删除

本文分享自 作者个人站点/博客 前往查看

如有侵权,请联系 cloudcommunity@tencent.com 删除。

本文参与 腾讯云自媒体分享计划  ,欢迎热爱写作的你一起参与!

评论
登录后参与评论
0 条评论
热度
最新
推荐阅读
目录
  • so easy~
  • 最快的老哥
领券
问题归档专栏文章快讯文章归档关键词归档开发者手册归档开发者手册 Section 归档