首页 > 其他 > 详细

p12 判断一个数是否为回文数

时间:2020-03-09 22:30:36      阅读:71      评论:0      收藏:0      [点我收藏+]

一:解题思路

二:完整代码示例 (C++版和Java版)

第一种方法C++

  //Time:O(m),Space:O(1)
  class Solution 
  {
  public:
      bool isPalindrome(int x) 
      {
          string str = to_string(x);//C++11特有语法,将整数x转化为字符串

          int i = 0, j = str.size() - 1;

          while (i < j)
          {
              if (str[i] != str[j]) return false;

              i++;
              j--;
          }
          return true;
      }
  };

第一种方法Java:

class Solution
{
    public boolean isPalindrome(int x)
    {
          String str=String.valueOf(x);

          int i=0,j=str.length()-1;
          
          while(i<j)
          {
              if(str.charAt(i)!=str.charAt(j)) return false;
              
              i++;
              j--;
          }

          return true;
    }
}

第二种方法C++:

  class Solution 
  {
  public:
      bool isPalindrome(int x) 
      {
          if (x < 0) return false;
          int temp = x;
          long y = 0;

          while (temp != 0)
          {
              int num = temp % 10;
              y = y * 10 + num;
              temp = temp / 10;
          }

          return (x==y);
      }
  };

第二种方法 Java:

class Solution
{
    public boolean isPalindrome(int x)
    {
        if(x<0) return false;
        
        int temp=x;
        long y=0;

        while(temp!=0)
        {
            int num=temp%10;
            y=y*10+num;
            temp=temp/10;
        }

        return (y==x);
    }
}

 

p12 判断一个数是否为回文数

原文:https://www.cnblogs.com/repinkply/p/12451843.html

(0)
(0)
   
举报
评论 一句话评论(0
关于我们 - 联系我们 - 留言反馈 - 联系我们:wmxa8@hotmail.com
© 2014 bubuko.com 版权所有
打开技术之扣,分享程序人生!