반응형
250x250
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
- final #java #자바 #안드로이드
- dfs #leetcode #python #graph #그래프
- dfs #그래프 #graph #python #leetcode #course #schedule
- context #android #getApplicationContext #activity #생명주기 #lifecycle
- leetcode #python #dfs #재귀
- gcd #최대공약수 #백준 #2981 #검문
- 다익스트라 #알고리즘 #bfs #그리디 #다이나믹프로그래밍 #leetcode #python
- dfs #leetcode #python
- 해시테이블 #heapq #파이썬 #리트코드 #알고리즘
- dfs #python #leetcode #combination
- 백준 #파이썬 #bfs #백트래킹 #1697 #숨바꼭질
- dfs #bfs #이진트리 #파이썬 #리트코드
- dfs #bfs #트리구조 #이진트리 #leetcode #python #파이썬
- handler #looper #thread #runnable #핸들러 #루퍼 #스레드 #러너블
- dfs #이진트리 #트리구조 #직렬화 #역직렬화 #파이썬 #리트코드 #leetcode #python
- leetcode #subsets #dfs #itertools #python
- 리트코드 #팰린드롬 #파이썬
- AsyncTask #doinbackground #스레드 #thread #android #안드로이드
- python #백준 #2580 #스도쿠 #dfs #백트래킹
- dfs #bfs #트리구조 #이진트리 #leetcode #파이썬 #python
- 다익스트라 #dijkstra #leetcode #파이썬 #python #algorithm #787
- python #백준 #9375 #패션왕 #신해빈
- dfs #bfs #leetcode #python
- 2004 #조합 0의 개수 #백준
- Python #leetcode #dfs #그래프 #백트래킹
- dfs #python #leetcode
- 아스테리스크 #Asterisk #파이썬
- 코틀린 #Do it #깡샘 #안드로이드
- exoplayer #mediaplayer #엑소플레이어 #안드로이드 #android
- 파이썬 #zip
Archives
- Today
- Total
멋진 개발자가 되고 싶다
[LeetCode, Python] 328. 홀짝 연결 리스트(Odd Even Linked List) 본문
Algorithm Study/leetcode
[LeetCode, Python] 328. 홀짝 연결 리스트(Odd Even Linked List)
오패산개구리 2021. 7. 7. 00:20728x90
반응형
연결 리스트를 홀수 노드 다음에 짝수 노드가 오도록 재구성하라.
공간 복잡도 O(1), 시간 복잡도 O(n)에 풀이하라.
Input: head = [1,2,3,4,5]
Output: [1,3,5,2,4]
** 깔끔한 풀이 **
1. 반복 구조로 홀짝 노드 처리
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
|
# Definition for singly-linked list.
# class ListNode:
# def __init__(self, val=0, next=None):
# self.val = val
# self.next = next
class Solution:
def oddEvenList(self, head: ListNode) -> ListNode:
# 예외 처리
if head is None:
return None
odd, even = head, head.next
even_head = head.next
# 반복하면서 홀짝 노드 처리
while even and even.next:
odd.next, even.next = odd.next.next, even.next.next
odd, even = odd.next, even.next
# 홀수 노드의 마지막을 짝수 헤드로 연결
odd.next = even_head
return head
|
cs |
해설:
홀수 노드, 짝수 노드로 리스트를 연결해가다가
마지막에 홀수 노드의 끝을 짝수 노드의 시작점을 가리키면 될 것 같다!
연결 리스트만 일주일 동안 풀어서 대충 이러한 방식으로 풀면 될 것 같다가 슬슬 나온다.
다중 할당을 이용하여 코드를 좀 더 깔끔하게 해 준다.
(여기서는 다중 할당을 일부러 쓸 필요는 없다)
728x90
반응형
'Algorithm Study > leetcode' 카테고리의 다른 글
[LeetCode,Python] 20. 유효한 괄호(Valid Parentheses) (0) | 2021.07.10 |
---|---|
[LeetCode,Python] 92. 역순 연결 리스트 2(Reverse Linked List 2) (0) | 2021.07.10 |
[LeetCode,Python] 24. 페어의 노드 스왑(Swap Nodes in Pairs) (0) | 2021.07.03 |
[LeetCode] 2. 두 수의 덧셈(Add Two Numbers) (0) | 2021.07.03 |
[LeetCode] 206. 역순 연결 리스트(Reverse Linked List) (0) | 2021.07.01 |