Notice
Recent Posts
Recent Comments
Link
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
Tags
- leetcode풀기
- 파이썬알고리즘
- 알고리즘풀이
- 파이썬 알고리즘
- 파이썬알고리즘풀기
- 릿코드풀이
- 파이썬 프로그래머스
- leetcode 풀기
- python priority queue
- 코틀린기초
- 파이썬 릿코드
- 릿코드풀기
- 잇츠디모
- python 릿코드
- python 알고리즘
- python zip_longest
- 파이썬릿코드
- LeetCode
- 파이썬 알고리즘 풀기
- python sorted
- 알고리즘풀기
- 릿코드
- python Leetcode
- binary search
- leetcode풀이
- 파이썬릿코드풀기
- 상가수익률계산기
- 릿코드 파이썬
- 릿코드 풀기
- python xor
Archives
- Today
- Total
소프트웨어에 대한 모든 것
LeetCode 풀기 - 143. Reorder List 본문
반응형
143. Reorder List
https://leetcode.com/problems/reorder-list/
문제)
솔루션1) two deques
두 개의 deque() 자료구조를 사용합니다.
풀이 전략:
- deque() 자료구조 q1, q2를 준비
- 리스트 전체를 순회해서 모든 값을 q1에 넣음
- q1 아이템에서 뒤의 절반에 해당되는 부분을 pop()해서 q2에 추가
- q1, q2 아이템을 번갈아가면 pop() 하면서 리스트의 값을 업데이트 수행
# Definition for singly-linked list.
# class ListNode:
# def __init__(self, val=0, next=None):
# self.val = val
# self.next = next
class Solution:
def reorderList(self, head: Optional[ListNode]) -> None:
"""
Do not return anything, modify head in-place instead.
"""
q1 = deque()
q2 = deque()
# traversal
cur_node = head
while cur_node:
q1.append(cur_node.val)
cur_node = cur_node.next
num_of_q1 = len(q1)
half_num_of_q1 = num_of_q1 // 2
# move q1 items to q2
for i in range(half_num_of_q1):
q2.append(q1.pop())
cur_node = head
for item1, item2 in zip_longest(q1, q2):
if item1:
cur_node.val = item1
cur_node = cur_node.next
if item2:
cur_node.val = item2
cur_node = cur_node.next
return head
반응형
'알고리즘 > LeetCode' 카테고리의 다른 글
LeetCode 풀기 - 973. K Closest Points to Origin (0) | 2021.12.26 |
---|---|
LeetCode 풀기 - 56. Merge Intervals (0) | 2021.12.24 |
LeetCode 풀기 - 1200. Minimum Absolute Difference (0) | 2021.12.21 |
LeetCode 풀기 - 1325. Delete Leaves With a Given Value (0) | 2021.12.20 |
LeetCode 풀기 - 1829. Maximum XOR for Each Query (0) | 2021.12.18 |
Comments