반응형
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
- dfs #그래프 #graph #python #leetcode #course #schedule
- gcd #최대공약수 #백준 #2981 #검문
- 2004 #조합 0의 개수 #백준
- 다익스트라 #알고리즘 #bfs #그리디 #다이나믹프로그래밍 #leetcode #python
- Python #leetcode #dfs #그래프 #백트래킹
- dfs #python #leetcode
- 코틀린 #Do it #깡샘 #안드로이드
- 아스테리스크 #Asterisk #파이썬
- dfs #bfs #트리구조 #이진트리 #leetcode #python #파이썬
- leetcode #python #dfs #재귀
- dfs #이진트리 #트리구조 #직렬화 #역직렬화 #파이썬 #리트코드 #leetcode #python
- AsyncTask #doinbackground #스레드 #thread #android #안드로이드
- dfs #python #leetcode #combination
- 백준 #파이썬 #bfs #백트래킹 #1697 #숨바꼭질
- 다익스트라 #dijkstra #leetcode #파이썬 #python #algorithm #787
- handler #looper #thread #runnable #핸들러 #루퍼 #스레드 #러너블
- 해시테이블 #heapq #파이썬 #리트코드 #알고리즘
- dfs #leetcode #python
- 리트코드 #팰린드롬 #파이썬
- dfs #leetcode #python #graph #그래프
- 파이썬 #zip
- python #백준 #9375 #패션왕 #신해빈
- final #java #자바 #안드로이드
- python #백준 #2580 #스도쿠 #dfs #백트래킹
- context #android #getApplicationContext #activity #생명주기 #lifecycle
- exoplayer #mediaplayer #엑소플레이어 #안드로이드 #android
- dfs #bfs #이진트리 #파이썬 #리트코드
- leetcode #subsets #dfs #itertools #python
- dfs #bfs #트리구조 #이진트리 #leetcode #파이썬 #python
- dfs #bfs #leetcode #python
Archives
- Today
- Total
멋진 개발자가 되고 싶다
[LeetCode] 21. 두 정렬 리스트의 병합(Merge Two Sorted Lists) 본문
Algorithm Study/leetcode
[LeetCode] 21. 두 정렬 리스트의 병합(Merge Two Sorted Lists)
오패산개구리 2021. 7. 1. 17:20728x90
반응형
정렬되어 있는 두 연결 리스트를 합쳐라.
Input: l1 = [1,2,4], l2 = [1,3,4]
Output: [1,1,2,3,4,4]
** 깔끔한 답안 **
1. 재귀 구조로 연결
1
2
3
4
5
6
7
8
9
10
11
12
|
# Definition for singly-linked list.
# class ListNode:
# def __init__(self, val=0, next=None):
# self.val = val
# self.next = next
class Solution:
def mergeTwoLists(self, l1: ListNode, l2: ListNode) -> ListNode:
if (not l1) or (l2 and l1.val > l2.val):
l1, l2 = l2, l1
if l1:
l1.next = self.mergeTwoLists(l1.next,l2)
return l1
|
cs |
해설:
우선 Input으로 주어진 두 연결 리스트가 정렬되었다는 것이 중요하다.
병합 정렬에서 마지막 조합 시 첫 번째 값부터 차례대로만 비교하면 한 번에 해결되듯이,
이 또한 첫 번째부터 비교하면서 리턴하면 쉽게(?) 풀 수 있는 문제다.
코드 자체만 보고는 이해하기 힘든데
(사실 아직도 100% 이해했다고 말하긴 힘들다)
일단 핵심은
l1이 최종 리턴 값이라 생각하면
l1이 l2보다 클 때
l1, l2 = l2, l1을 해줘서
l1에 차곡차곡 값을 정렬시켜 주는 거다!
백번 글 쓰여있는 걸 읽는 것보다
일단 손으로 연결 리스트를 그려가며 이해하는 것이 중요하다.
출처: 파이썬 알고리즘 인터뷰(박상길 지음, 정진호 일러스트) 출판사 [책만]
728x90
반응형
'Algorithm Study > leetcode' 카테고리의 다른 글
[LeetCode] 2. 두 수의 덧셈(Add Two Numbers) (0) | 2021.07.03 |
---|---|
[LeetCode] 206. 역순 연결 리스트(Reverse Linked List) (0) | 2021.07.01 |
[LeetCode] 234. 팰린드롬 연결 리스트(Palindrome Linked List) (0) | 2021.06.30 |
[LeetCode] 121. 주식을 사고팔기 좋은 시점(Best Time to Buy and Sell Stock (0) | 2021.06.29 |
[LeetCode] 238. 자신을 제외한 배열의 곱(Product of Array Except Self) (0) | 2021.06.29 |