LeetCode 206.
LeetCode 206
Approach 1. Recursive
Time Complexity: O(n), Space Complexity: O(n)
class Solution:
def reverseList(self, head):
if not head or not head.next:
return head
temp = self.reverseList(head.next)
head.next.next = head
head.next = None
return temp
Approach 2. Iterative
Time Complexity: O(n), Space Complexity: O(1)
class Solution:
def reverseList(self, head):
prev = None
curr = head
while curr:
temp = curr.next
curr.next = prev
prev = curr
curr = temp
return prev
이렇게 기본적인 문제들 정도는 접근 방식을 외워두는 것도 좋은 것 같다.
Author And Source
이 문제에 관하여(LeetCode 206.), 우리는 이곳에서 더 많은 자료를 발견하고 링크를 클릭하여 보았다 https://velog.io/@hojin11choi/TIL-LeetCode-206저자 귀속: 원작자 정보가 원작자 URL에 포함되어 있으며 저작권은 원작자 소유입니다.
우수한 개발자 콘텐츠 발견에 전념 (Collection and Share based on the CC Protocol.)