zoukankan      html  css  js  c++  java
  • [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.

    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.
     * struct ListNode {
     *     int val;
     *     ListNode *next;
     *     ListNode(int x) : val(x), next(NULL) {}
     * };
     */
    class Solution {
    public:
        
        ListNode *head0;
        int flag ;
        ListNode *reverseKGroup(ListNode *head, int k) {
            if(k<2)
                return head;
             ListNode *h = reverse(head,k);
             if(flag ==0 )
                 return head;
            
             ListNode *tail = head;
             while(head0 != NULL && flag==1){
                 ListNode *tmp = head0;
                 tail->next = reverse(head0,k);
                 tail = tmp;
             }
    
             return h;
        }
    private:
        ListNode *reverse(ListNode *head, int n){
            ListNode *p = head;
            int num = n;
            while(num>0 && p!=NULL){
                p = p->next;
                num--;
            }
            if(p == NULL && num>0){
                flag = 0;//flag == 0表示未翻转
                return head;
            }
                
            flag = 1; //flag == 1表示翻转
            ListNode *p1 = head,*p2=p1->next,*p3; 
            while(n-1){
               p3 = p2->next;
               p2->next = p1;
               p1 = p2;
               p2 = p3;
               n--;
            }
            head->next = NULL;
            head0 = p2;
            return p1;
        
        }
    };    
  • 相关阅读:
    路由聚合(路由发布时)
    RIP
    路由选择和静态路由
    传输介质和IP地址
    升级VRP
    文件系统
    命令行基础
    常见的网络设备
    mysql基本的修改表的命令
    mysql的外键知识
  • 原文地址:https://www.cnblogs.com/Xylophone/p/3938440.html
Copyright © 2011-2022 走看看