반응형
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 #백준 #9375 #패션왕 #신해빈
- 2004 #조합 0의 개수 #백준
- 리트코드 #팰린드롬 #파이썬
- 코틀린 #Do it #깡샘 #안드로이드
- 아스테리스크 #Asterisk #파이썬
- exoplayer #mediaplayer #엑소플레이어 #안드로이드 #android
- Python #leetcode #dfs #그래프 #백트래킹
- dfs #python #leetcode #combination
- dfs #bfs #트리구조 #이진트리 #leetcode #파이썬 #python
- 해시테이블 #heapq #파이썬 #리트코드 #알고리즘
- AsyncTask #doinbackground #스레드 #thread #android #안드로이드
- 다익스트라 #알고리즘 #bfs #그리디 #다이나믹프로그래밍 #leetcode #python
- dfs #bfs #트리구조 #이진트리 #leetcode #python #파이썬
- context #android #getApplicationContext #activity #생명주기 #lifecycle
- dfs #python #leetcode
- dfs #bfs #이진트리 #파이썬 #리트코드
- 다익스트라 #dijkstra #leetcode #파이썬 #python #algorithm #787
- final #java #자바 #안드로이드
- dfs #leetcode #python #graph #그래프
- dfs #그래프 #graph #python #leetcode #course #schedule
- leetcode #python #dfs #재귀
- dfs #bfs #leetcode #python
- 백준 #파이썬 #bfs #백트래킹 #1697 #숨바꼭질
- dfs #leetcode #python
- python #백준 #2580 #스도쿠 #dfs #백트래킹
- gcd #최대공약수 #백준 #2981 #검문
- handler #looper #thread #runnable #핸들러 #루퍼 #스레드 #러너블
- dfs #이진트리 #트리구조 #직렬화 #역직렬화 #파이썬 #리트코드 #leetcode #python
- leetcode #subsets #dfs #itertools #python
- 파이썬 #zip
Archives
- Today
- Total
멋진 개발자가 되고 싶다
[LeetCode,Python] 92. 역순 연결 리스트 2(Reverse Linked List 2) 본문
Algorithm Study/leetcode
[LeetCode,Python] 92. 역순 연결 리스트 2(Reverse Linked List 2)
오패산개구리 2021. 7. 10. 00:59728x90
반응형
인덱스 m에서 n까지를 역순으로 만들어라.
인덱스 m은 1부터 시작한다.
Input: head = [1,2,3,4,5], left = 2, right = 4
Output: [1,4,3,2,5]
** 깔끔한 답안 **
1. 반복 구조로 노드 뒤집기
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
|
# Definition for singly-linked list.
# class ListNode:
# def __init__(self, val=0, next=None):
# self.val = val
# self.next = next
class Solution:
def reverseBetween(self, head: ListNode, left: int, right: int) -> ListNode:
if left == right or not head:
return head
root = start = ListNode(None)
root.next = head
for _ in range(left - 1):
start = start.next
end = start.next
for _ in range(right - left):
tmp, start.next, end.next = start.next, end.next, end.next.next
start.next.next = tmp
return root.next
|
cs |
해설:
역순이 취해지는 지점 바로 전 노드를 first라 하였다.
그리고 역순이 취해지는 노드를 end라 하였다.
단순하게 말하면 ListNode 전체로 봤을 때,
end가 역순이 끝나는 지점까지 나아가면서 자리를 바꿔주도록 하였다.
end가 나아가면서 first의 앞 노드와 계속 자리를 바꿔준다.
따라서 first의 앞 노드를 tmp로 두고 진행하였다.
손으로 위 코드를 따라 진행해보길 바란다.
[출처: 파이썬 알고리즘 인터뷰(박상길 지음, 정진호 일러스트) 출판사 : 책만]
728x90
반응형
'Algorithm Study > leetcode' 카테고리의 다른 글
[LeetCode,Python] 316. 중복 문자 제거(Remove Duplicate Letters) (0) | 2021.07.11 |
---|---|
[LeetCode,Python] 20. 유효한 괄호(Valid Parentheses) (0) | 2021.07.10 |
[LeetCode, Python] 328. 홀짝 연결 리스트(Odd Even Linked List) (0) | 2021.07.07 |
[LeetCode,Python] 24. 페어의 노드 스왑(Swap Nodes in Pairs) (0) | 2021.07.03 |
[LeetCode] 2. 두 수의 덧셈(Add Two Numbers) (0) | 2021.07.03 |