티스토리 뷰
안녕하세요. 죠쵸입니다.
Leetcode 206번 문제는 난이도 "EASY"에 해당하는 문제로, 문제자체가 기본적으로 간단해서 재귀함수에 익숙하지 않다면, 재귀함수를 연습해보기 좋을 것 같습니다.
leetcode.com/problems/reverse-linked-list
#LeetCode 206. Reverse Linked List(Description)
LeetCode 206번 문제는 간단합니다. 주어진 Linked List를 Revese 하여 반환하는 것입니다.
#LeetCode 206. Reverse Linked List(Solution)
이번 문제는 재귀함수의 호출을 이용하여 풀이를 진행하였습니다. 재귀함수의 경우는 최종 종료 조건과 반환하는 값을 잘 생각해야 원하는 값을 얻을 수 있습니다. 간단히 풀이과정을 설명하자면, 이전 노드(prev)의 값을 현재 노드(current)의 next에 치환하여 Linked List를 Reverse 처리하게 하였습니다. 아래의 코드를 보시면 이해하실 수 있으리라 생각됩니다.
# Definition for singly-linked list.
class ListNode:
def __init__(self, val=0, next=None):
self.val = val
self.next = next
def _print_all(self):
while self:
print(self.val, end=' ')
self = self.next
print()
class Solution:
def reverse(self, current: ListNode, prev: ListNode)-> ListNode:
if not current:
return prev
next = current.next
current.next = prev
return self.reverse(next, current)
def reverseList(self, head: ListNode) -> ListNode:
return self.reverse(head, None)
아래와 같이 위의 풀이를 테스트 해 보았습니다.
solution = Solution()
L1_3 = ListNode(4)
L1_2 = ListNode(2,L1_3)
L1_1 = ListNode(1,L1_2)
print("Before : ", end=" ")
L1_1._print_all()
result = solution.reverseList(L1_1)
print("After : ", end=" ")
result._print_all()
LeetCode에 제출된 결과는 아래와 같습니다.
방문해 주셔서 감사합니다. 여러분의 공감하기(♥), 댓글과 구독은 저에게 힘이 됩니다.
이상으로 죠쵸였습니다.
'Programming > LeetCode' 카테고리의 다른 글
LeetCode 24. Swap Nodes in Pairs (Python3) (0) | 2020.11.17 |
---|---|
LeetCode 2. Add Two Numbers (Python3) (0) | 2020.11.09 |
LeetCode 21. Merge Two Sorted Lists (Python3) (4) | 2020.11.08 |
LeetCode 121.Best Time to Buy and Sell Stock (Python3) (4) | 2020.11.03 |
LeetCode 238.Product of Array Except Self (Python3) (0) | 2020.10.28 |
공지사항
최근에 올라온 글
최근에 달린 댓글
- Total
- Today
- Yesterday
링크
TAG
- 재귀함수
- 파이썬
- python
- 리트코드
- ap news
- 캐글
- AdSense
- Leetcode
- ai
- Leetcode255
- 죠쵸
- kule
- 리바이스사이즈
- 큘가방
- 아디다스삼바화이트
- Machine Learning
- 판다스
- 영어공부
- 파이썬 기초
- Big Data
- Study
- 328. Odd Even Linked List
- English
- pandas
- 티파니T1
- 파이썬 독학
- 데이터 분석
- joecho
- Kaggle
- Pandas(판다스)
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
글 보관함