zoukankan      html  css  js  c++  java
  • 25. 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; }
     * }
     */
    public class Solution {
        public ListNode reverseKGroup(ListNode head, int k) {
            if(head == null || head.next == null || k == 1)
                return head;
            ListNode dummy = new ListNode(0);
            dummy.next = head;
            ListNode pre = dummy;
            int len = 0;
            while(head != null){
                len++;
                if(len % k == 0){
                   pre = reverseList(pre, head.next); 
                   head = pre.next;
                }
                else
                    head = head.next;
            }
            return dummy.next;
        }
        
        public ListNode reverseList(ListNode l1 ,ListNode next){
            if(l1 == null || l1.next == null)
                return l1;
            ListNode slow = l1.next;
            ListNode fast = slow.next;
            while(fast != next){
                slow.next = fast.next;
                fast.next = l1.next;
                l1.next = fast;
                fast = slow.next;
            }
            return slow;
        }
    }
  • 相关阅读:
    Mybatis学习总结(五)——动态sql
    1006 换个格式输出整数(15分)
    1005 继续(3n+1)猜想(25分) *
    1004 成绩排名(20分)
    1003 我要通过!(20分)*
    1002 写出这个数(20分) *
    1001 害死人不偿命的(3n+1)猜想(15分)
    CCSP 201312-2 ISBN号码
    CCSP201312-1出现次数最多的数
    c++动态定义数组
  • 原文地址:https://www.cnblogs.com/joannacode/p/6012372.html
Copyright © 2011-2022 走看看