-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathinterview_02.06_test.go
69 lines (59 loc) · 1.2 KB
/
interview_02.06_test.go
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
//编写一个函数,检查输入的链表是否是回文的。
//
//
//
// 示例 1:
//
// 输入: 1->2
//输出: false
//
//
// 示例 2:
//
// 输入: 1->2->2->1
//输出: true
//
//
//
//
// 进阶:
//你能否用 O(n) 时间复杂度和 O(1) 空间复杂度解决此题?
// Related Topics 链表
// 👍 63 👎 0
package leetcode
import (
"testing"
"github.com/stretchr/testify/assert"
)
func TestIsPalindrome(t *testing.T) {
assert.True(t, isPalindrome(NewList([]int{1, 1})))
assert.True(t, isPalindrome(NewList([]int{1, 2, 1})))
assert.False(t, isPalindrome(NewList([]int{1, 2, 2})))
assert.True(t, isPalindrome(NewList([]int{1, 2, 2, 1})))
assert.True(t, isPalindrome(NewList([]int{0})))
assert.True(t, isPalindrome(NewList([]int{0, 0, 0, 0})))
assert.True(t, isPalindrome(NewList([]int{0, 0, 1, 1, 0, 0})))
}
func isPalindrome(head *ListNode) bool {
if head == nil {
return true
}
var (
list []int
cursor = head
left, right = 0, 0
)
for cursor != nil {
list = append(list, cursor.Val)
cursor = cursor.Next
}
right = len(list) - 1
for left < right {
if list[left] != list[right] {
return false
}
left += 1
right -= 1
}
return true
}