-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathisPalindrome.java
More file actions
73 lines (70 loc) · 2.17 KB
/
isPalindrome.java
File metadata and controls
73 lines (70 loc) · 2.17 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
public class isPalindrome{
public boolean isPalindrome(int x) {
if (x < 0){
return false;
}else if (x == 0){
return true;
}
int cnt = 0;
long test = x;
long div = 1;
while (test > 0){
test = x;
test = test / div;
div = div * 10;
cnt++;
}
cnt--;
if (cnt == 1){
return true;
}
int[] a = new int[cnt];
int test2 = x;
for (int i = 0; i < cnt; i++){
a[i] = test2 % 10;
test2 = test2 / 10;
}
int cnt2 = cnt;
if (cnt % 2 == 0){
cnt = cnt / 2;
}else {
cnt = cnt / 2 + 1;
}
boolean[] result = new boolean[cnt];
for(int i = 0; i < cnt; i++){
if (a[i] == a[cnt2 - i - 1]){
result[i] = true;
}else{
result[i] = false;
}
}
for (boolean y : result){
if (y == false){
return false;
}
}
return true;
}
public boolean isPalindrome_solution(int x) {
// 特殊情况:
// 如上所述,当 x < 0 时,x 不是回文数。
// 同样地,如果数字的最后一位是 0,为了使该数字为回文,
// 则其第一位数字也应该是 0
// 只有 0 满足这一属性
if (x < 0 || (x % 10 == 0 && x != 0)) {
return false;
}
int revertedNumber = 0;
while (x > revertedNumber) {
revertedNumber = revertedNumber * 10 + x % 10;
x /= 10;
}
// 当数字长度为奇数时,我们可以通过 revertedNumber/10 去除处于中位的数字。
// 例如,当输入为 12321 时,在 while 循环的末尾我们可以得到 x = 12,revertedNumber = 123,
// 由于处于中位的数字不影响回文(它总是与自己相等),所以我们可以简单地将其去除。
return x == revertedNumber || x == revertedNumber / 10;
}
}
//https://leetcode.cn/problems/palindrome-number/
//时间复杂度O(log(n))
//空间复杂度O(1)