반응형
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
- 리트코드 #팰린드롬 #파이썬
- python #백준 #2580 #스도쿠 #dfs #백트래킹
- final #java #자바 #안드로이드
- handler #looper #thread #runnable #핸들러 #루퍼 #스레드 #러너블
- Python #leetcode #dfs #그래프 #백트래킹
- leetcode #python #dfs #재귀
- 파이썬 #zip
- python #백준 #9375 #패션왕 #신해빈
- 다익스트라 #dijkstra #leetcode #파이썬 #python #algorithm #787
- dfs #leetcode #python
- dfs #bfs #이진트리 #파이썬 #리트코드
- 백준 #파이썬 #bfs #백트래킹 #1697 #숨바꼭질
- dfs #leetcode #python #graph #그래프
- dfs #이진트리 #트리구조 #직렬화 #역직렬화 #파이썬 #리트코드 #leetcode #python
- context #android #getApplicationContext #activity #생명주기 #lifecycle
- dfs #python #leetcode
- exoplayer #mediaplayer #엑소플레이어 #안드로이드 #android
- dfs #bfs #leetcode #python
- 다익스트라 #알고리즘 #bfs #그리디 #다이나믹프로그래밍 #leetcode #python
- AsyncTask #doinbackground #스레드 #thread #android #안드로이드
- dfs #bfs #트리구조 #이진트리 #leetcode #파이썬 #python
- 해시테이블 #heapq #파이썬 #리트코드 #알고리즘
- 아스테리스크 #Asterisk #파이썬
- leetcode #subsets #dfs #itertools #python
- 코틀린 #Do it #깡샘 #안드로이드
- 2004 #조합 0의 개수 #백준
- gcd #최대공약수 #백준 #2981 #검문
- dfs #python #leetcode #combination
- dfs #그래프 #graph #python #leetcode #course #schedule
- dfs #bfs #트리구조 #이진트리 #leetcode #python #파이썬
Archives
- Today
- Total
멋진 개발자가 되고 싶다
[LeetCode] 206. 역순 연결 리스트(Reverse Linked List) 본문
728x90
반응형
연결 리스트를 뒤집어라.
ex)
Input: head = [1,2,3,4,5]
Output: [5,4,3,2,1]
** 깔끔 답안 **
1. 재귀 구조로 뒤집기
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
# Definition for singly-linked list.
# class ListNode:
# def __init__(self, val=0, next=None):
# self.val = val
# self.next = next
class Solution:
def reverseList(self, head: ListNode) -> ListNode:
def reverse(node, prev = None):
if not node:
return prev
next, node.next = node.next, prev
return reverse(next, node)
return reverse(head)
|
cs |
해설:
(아 재귀 함수 ㅈ같다...)
함수가 재귀적으로 반복되려면
함수의 인자로 조금씩 범위가 좁아지는 node와
점점 역순이 생겨나는 prev가 들어가야 한다.
예를 들어 input을 위 ex의 값이라 하자.
next라는 변수를 하나 만들어서 node의 next부터를 저장시키고
node의 next를 prev로 지정하면
next : 2->3->4->5
node : 1
이 된다.
재귀를 거치고 다음은
next : 3->4->5
node : 2->1
이 된다.
조금씩 next의 범위가 줄어들고 node의 범위가 늘어나는 게 보이는가?
이 짓을 존나 반복하면 나중에는
next : None
node : 5->4->3->2->1
이 된다.
2. 반복 구조로 뒤집기
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
# Definition for singly-linked list.
# class ListNode:
# def __init__(self, val=0, next=None):
# self.val = val
# self.next = next
class Solution:
def reverseList(self, head: ListNode) -> ListNode:
node, prev = head, None
while node:
next, node.next = node.next, prev
prev, node = node, next
return prev
|
cs |
해설:
일부러 재귀 코드와 비슷하도록
head가 node가 되도록 맞춰봤다.
전반적인 코드는 재귀랑 비슷해서 이해하기 수월할 것이다.
개인적으로 재귀보다 이 코드가 더 나은 것 같다.
왜냐하면 재귀를 제대로 쓸 줄 몰라서..ㅎ
****************** 재귀 함수 이해에 좋은 영상 ******************
728x90
반응형
'Algorithm Study > leetcode' 카테고리의 다른 글
[LeetCode,Python] 24. 페어의 노드 스왑(Swap Nodes in Pairs) (0) | 2021.07.03 |
---|---|
[LeetCode] 2. 두 수의 덧셈(Add Two Numbers) (0) | 2021.07.03 |
[LeetCode] 21. 두 정렬 리스트의 병합(Merge Two Sorted Lists) (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 |