首页 > 代码库 > Reverse Nodes in k-Group
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.
If the number of nodes is not a multiple of k then left-out nodes in the end should remain as it is.
You may not alter the values in the nodes, only nodes itself may be changed.
Only constant memory is allowed.
For 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
答案
/** * Definition for singly-linked list. * public class ListNode { * int val; * ListNode next; * ListNode(int x) { * val = x; * next = null; * } * } */ public class Solution { public void reverse(ListNode head) { ListNode first=head; ListNode second=first.next; first.next=null; while(second!=null) { ListNode p=second.next; second.next=first; first=second; second=p; } } public ListNode reverseKGroup(ListNode head, int k) { if(head==null||head.next==null||k<=1) { return head; } ListNode pHead=new ListNode(0); ListNode first=null; ListNode end=null; ListNode p=null; ListNode last=pHead; for(first=head;first!=null;first=p) { int i=1; for(end=first;end.next!=null&&i<k;i++,end=end.next); if(i<k) { last.next=first; break; } p=end.next; end.next=null; reverse(first); last.next=end; last=first; } return pHead.next; } }
Reverse Nodes in k-Group
声明:以上内容来自用户投稿及互联网公开渠道收集整理发布,本网站不拥有所有权,未作人工编辑处理,也不承担相关法律责任,若内容有误或涉及侵权可进行投诉: 投诉/举报 工作人员会在5个工作日内联系你,一经查实,本站将立刻删除涉嫌侵权内容。