Leet Code 69. x 的平方根

Posted poteitoutou

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Leet Code 69. x 的平方根相关的知识,希望对你有一定的参考价值。

class Solution 
public:
    int mySqrt(int x) 
        long a = x;
        while (a * a > x)
            a = (a + x / a) / 2;
        
        return a;
    
;

Leet Code 9.回文数

判断一个整数是否是回文数。

题解

普通解法:将整数转为字符串,然后对字符串做判断。

///简单粗暴,看看就行
class Solution {
    public boolean isPalindrome(int x) {
        String reversedStr = (new StringBuilder(x + "")).reverse().toString();
        return (x + "").equals(reversedStr);
    }
}
我的解法代码

取出后半段数字进行翻转

  • 每次进行取余操作,取出最低数字
  • 将最低数字加到取出数的末尾
  • 每取一位最低数,x就要/10
  • 判断x是否小于取出数,小于时代表已经对半
  • 如果是偶数,则两者相等,如果是奇数,需要/10
class Solution {
    public boolean isPalindrome(int x) {
        //思考:这里大家可以思考一下,为什么末尾为 0 就可以直接返回 false
        if (x < 0 || (x % 10 == 0 && x != 0)) return false;
        int revertedNumber = 0;
        while (x > revertedNumber) {
            revertedNumber = revertedNumber * 10 + x % 10;
            x /= 10;
        }
        return x == revertedNumber || x == revertedNumber / 10;
    }
}

以上是关于Leet Code 69. x 的平方根的主要内容,如果未能解决你的问题,请参考以下文章

力扣69. x 的平方根

leet code 86 分隔链表

leet code 86 分隔链表

LeetCode 69. x 的平方根

LeetCode 69. x 的平方根

LeetCode69. x 的平方根