【leetcode】-25. Reverse Nodes in k-Group 반전 k 그룹
1700 단어 LeetCode
Reverse Nodes in k-Group
제목
Given a linked list, reverse the nodes of a linked list k at a time and return its modified list.
k is a positive integer and is less than or equal to the length of the linked list. If the number of nodes is not a multiple of k then left-out nodes in the end should remain as it is.
Example:
Given this linked list: 1->2->3->4->5
For k = 2, you should return: 2->1->4->3->5
For k = 3, you should return: 3->2->1->4->5
Note:
Only constant extra memory is allowed. You may not alter the values in the list’s nodes, only nodes itself may be changed.
차례로 돌아가다
제목은 체인 시계의 길이보다 작은 k개의 체인 시계를 반전시키고 k개가 부족한 체인 시계의 순서는 변하지 않도록 요구한다.이 문제는 언뜻 보기에는 매우 복잡하지만, 사실은 먼저 첫 번째 그룹의 k개의 체인 시계를 뒤집은 다음에 나머지 부분을 새로운 체인 시계로 보고 귀속 계산을 할 수 있다.
python 코드
# Definition for singly-linked list.
# class ListNode:
# def __init__(self, val=0, next=None):
# self.val = val
# self.next = next
class Solution:
def reverseKGroup(self, head: ListNode, k: int) -> ListNode:
if not head:
return None
a = b = head
for i in range(k):
if not b:
return head
b = b.next
newHead = self.reverse(a,b)
a.next = self.reverseKGroup(b,k)
return newHead
def reverse(self,a,b):
pre = None
cur = a
nxt = a
while cur != b:
nxt = cur.next
cur.next = pre
pre = cur
cur = nxt
return pre
이 내용에 흥미가 있습니까?
현재 기사가 여러분의 문제를 해결하지 못하는 경우 AI 엔진은 머신러닝 분석(스마트 모델이 방금 만들어져 부정확한 경우가 있을 수 있음)을 통해 가장 유사한 기사를 추천합니다:
python 문자열 입력으로 모든 유효한 IP 주소 생성(LeetCode 93번 문제)
이 문제의 공식 난이도는 Medium으로 좋아요 1296, 반대 505, 통과율 35.4%를 눌렀다.각 항목의 지표로 말하자면 보기에는 약간 규범에 맞는 것 같지만, 실제로도 확실히 그렇다.이 문제의 해법과 의도는 ...
텍스트를 자유롭게 공유하거나 복사할 수 있습니다.하지만 이 문서의 URL은 참조 URL로 남겨 두십시오.
CC BY-SA 2.5, CC BY-SA 3.0 및 CC BY-SA 4.0에 따라 라이센스가 부여됩니다.
제목은 체인 시계의 길이보다 작은 k개의 체인 시계를 반전시키고 k개가 부족한 체인 시계의 순서는 변하지 않도록 요구한다.이 문제는 언뜻 보기에는 매우 복잡하지만, 사실은 먼저 첫 번째 그룹의 k개의 체인 시계를 뒤집은 다음에 나머지 부분을 새로운 체인 시계로 보고 귀속 계산을 할 수 있다.
python 코드
# Definition for singly-linked list.
# class ListNode:
# def __init__(self, val=0, next=None):
# self.val = val
# self.next = next
class Solution:
def reverseKGroup(self, head: ListNode, k: int) -> ListNode:
if not head:
return None
a = b = head
for i in range(k):
if not b:
return head
b = b.next
newHead = self.reverse(a,b)
a.next = self.reverseKGroup(b,k)
return newHead
def reverse(self,a,b):
pre = None
cur = a
nxt = a
while cur != b:
nxt = cur.next
cur.next = pre
pre = cur
cur = nxt
return pre
이 내용에 흥미가 있습니까?
현재 기사가 여러분의 문제를 해결하지 못하는 경우 AI 엔진은 머신러닝 분석(스마트 모델이 방금 만들어져 부정확한 경우가 있을 수 있음)을 통해 가장 유사한 기사를 추천합니다:
python 문자열 입력으로 모든 유효한 IP 주소 생성(LeetCode 93번 문제)이 문제의 공식 난이도는 Medium으로 좋아요 1296, 반대 505, 통과율 35.4%를 눌렀다.각 항목의 지표로 말하자면 보기에는 약간 규범에 맞는 것 같지만, 실제로도 확실히 그렇다.이 문제의 해법과 의도는 ...
텍스트를 자유롭게 공유하거나 복사할 수 있습니다.하지만 이 문서의 URL은 참조 URL로 남겨 두십시오.
CC BY-SA 2.5, CC BY-SA 3.0 및 CC BY-SA 4.0에 따라 라이센스가 부여됩니다.