<--- 리트코드 234. Palindrome Linked List --->
# 문제: 연결 리스트가 팰린드롬 구조인지 판별하라.
입력
1->2 |
출력
false |
입력
1->2->2->1 |
출력
true |
# 풀이
1. 리스트 변환
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
|
from typing import List
class ListNode(object):
def __init__(self, val=0, next=None):
self.val = val
self.next = None
def is_palindrome(head: ListNode) -> bool:
q: List = []
if not head:
return True
node = head
while node is not None:
q.append(node.val)
node = node.next
while len(q) > 1:
if q.pop(0) != q.pop():
return False
return True
list1 = ListNode(1)
list2 = ListNode(2)
list3 = ListNode(2)
list4 = ListNode(1)
head = list1
list1.next = list2
list2.next = list3
list3.next = list4
print(is_palindrome(head))
|
cs |
2. 데크를 이용한 최적화
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
|
from typing import List
import collections
class ListNode(object):
def __init__(self, val=0, next=None):
self.val = val
self.next = None
def is_palindrome(head: ListNode) -> bool:
q = collections.deque()
if not head:
return True
node = head
while node is not None:
q.append(node.val)
node = node.next
while len(q) > 1:
if q.popleft() != q.pop():
return False
return True
list1 = ListNode(1)
list2 = ListNode(2)
list3 = ListNode(2)
list4 = ListNode(1)
head = list1
list1.next = list2
list2.next = list3
list3.next = list4
print(is_palindrome(head))
|
cs |
3. 러너를 통한 우아한 풀이
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
|
from typing import List
import collections
class ListNode(object):
def __init__(self, val=0, next=None):
self.val = val
self.next = None
def is_palindrome(head: ListNode) -> bool:
rev = None
slow = fast = head
while fast and fast.next:
fast = fast.next.next
rev, rev.next, slow = slow, rev, slow.next
if fast:
slow = slow.next
while rev and rev.val == slow.val:
slow, rev = slow.next, rev.next
return not rev
list1 = ListNode(1)
list2 = ListNode(2)
list3 = ListNode(2)
list4 = ListNode(1)
head = list1
list1.next = list2
list2.next = list3
list3.next = list4
print(is_palindrome(head))
|
cs |
'Python' 카테고리의 다른 글
파이썬 알고리즘 인터뷰 - 15. 역순 연결 리스트 (0) | 2022.01.19 |
---|---|
파이썬 알고리즘 인터뷰 - 14. 두 정렬 리스트의 병합 (0) | 2022.01.17 |
파이썬 알고리즘 인터뷰 - 12. 주식을 사고팔기 가장 좋은 시점 (0) | 2022.01.15 |
파이썬 알고리즘 인터뷰 - 11. 자신을 제외한 배열의 곱 (0) | 2022.01.15 |
파이썬 알고리즘 인터뷰 - 10. 배열 파티션Ⅰ (0) | 2022.01.15 |