leetcode學習筆記09 palindrome-number
問題
Determine whether an integer is a palindrome. An integer is a palindrome when it reads the same backward as forward.
Follow up: Could you solve it without converting the integer to a string?
Example 1:
Input: x = 121
Output: true
Example 2:
Input: x = -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: x = 10
Output: false
Explanation: Reads 01 from right to left. Therefore it is not a palindrome.
Example 4:
Input: x = -101
Output: false
Constraints:
- − 2 31 < = x < = 2 31 − 1 -2^{31} <= x <= 2^{31} - 1 −231<=x<=231−1
思考
判斷是否是迴文數字,輸入是int.
首先,所有的負數都肯定不是. 然後,可以通過某種方式,依次取得最後和最前的數字進行比較.
比如, 1 2 3 4 2 1, 第一次比較1 和1 ,然後比較2 和2 然後比較3 和4 發現不相等,則返回false.
數字取最後一位很好做, 除10取餘數就可以了, 但是取最前一位需要知道最大位數.
想複雜了. 最簡單的辦法是把數字倒過來, 去判斷倒過來的這個數和輸入的數是否相等.
方法1
時間複雜度
O
(
1
)
O(1)
O(1)
空間複雜度
O
(
1
)
O(1)
O(1).
class Solution {
public boolean isPalindrome(int x) {
// 小於0 返回false
if(x < 0)
return false;
// 計算 x 按位倒裝的數 r
int r = 0,temp = x;
while(temp != 0){
r = r*10 + temp%10;
temp /= 10;
}
return r == x;
}
}
相關文章
- 2018-09-02學習筆記筆記
- Java學習筆記09(IO流)Java筆記
- Leetcode學習筆記(1)LeetCode筆記
- DAY 24 LeetCode學習筆記LeetCode筆記
- leetcode學習筆記14 Longest Common PrefixLeetCode筆記
- leetcode學習筆記73 Set Matrix ZeroesLeetCode筆記
- git checkout 和 git reset 的區別 —— Git 學習筆記 09Git筆記
- numpy的學習筆記\pandas學習筆記筆記
- 學習筆記筆記
- 學習產品快報09 | “CSDN學習”:增加學習提醒,提示學習不忘記
- Unity的Shader學習筆記(09)[20/12/24_週四][33-36]Unity筆記
- 【學習筆記】數學筆記
- 《JAVA學習指南》學習筆記Java筆記
- 機器學習學習筆記機器學習筆記
- 2020-09-29【學習筆記】scala語言(三十三) scala中的抽象方法筆記抽象
- 學習筆記-粉筆980筆記
- 學習筆記(3.29)筆記
- 學習筆記(4.1)筆記
- 學習筆記(3.25)筆記
- 學習筆記(3.26)筆記
- JavaWeb 學習筆記JavaWeb筆記
- golang 學習筆記Golang筆記
- Nginx 學習筆記Nginx筆記
- spring學習筆記Spring筆記
- gPRC學習筆記筆記
- GDB學習筆記筆記
- 學習筆記(4.2)筆記
- 學習筆記(4.3)筆記
- 學習筆記(4.4)筆記
- Servlet學習筆記Servlet筆記
- 學習筆記(3.27)筆記
- jest 學習筆記筆記
- NodeJS學習筆記NodeJS筆記
- WebSocket 學習筆記Web筆記
- mount 學習筆記筆記
- mapGetters學習筆記筆記
- jQuery學習筆記jQuery筆記
- 學習筆記:DDPG筆記