码迷,mamicode.com
首页 > 其他好文 > 详细

【LeetCode】回文数

时间:2018-05-09 22:40:32      阅读:122      评论:0      收藏:0      [点我收藏+]

标签:bool   isp   etc   cpp   问题:   return   ali   string   code   

class Solution {
public:
    bool isPalindrome(int x) {
        string str;
        str=to_string(x);
        int len=str.size();
        for(int i=0;i<=len/2;i++){
            if(str[i]!=str[len-i-1]) return false;
        }  
        return true;
    }
};

  还没有解决的问题:你能不将整数转为字符串来解决这个问题吗?(思考ing)

【LeetCode】回文数

标签:bool   isp   etc   cpp   问题:   return   ali   string   code   

原文地址:https://www.cnblogs.com/lettleshel/p/9016844.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!