回文链表
请判断一个链表是否为回文链表。
示例 1:
输入: 1->2
输出: false
1
2
2
示例 2:
输入: 1->2->2->1
输出: true
1
2
2
解答:
/**
* Definition for singly-linked list.
* function ListNode(val, next) {
* this.val = (val===undefined ? 0 : val)
* this.next = (next===undefined ? null : next)
* }
*/
/**
* @param {ListNode} head
* @return {boolean}
*/
var isPalindrome = function(head) {
// 使用数组来判断
let arr = [];
let cur = head;
while(cur) {
arr.push(cur.val);
cur = cur.next;
}
return arr.join('') === arr.reverse().join('')
}
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
在Github上编辑此页 (opens new window)
上次更新: 3/28/2021, 2:33:52 PM