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;
        
        }
    };    
  • 相关阅读:
    POJ 1041(欧拉路)
    POJ 1904(强连通分量)Tarjan
    POJ 1486(二分图匹配)二分图的完全匹配的必须边
    POJ 1780(欧拉路)
    POJ 1386(欧拉路)
    HDU 3496(DP)
    PKU2387Til the Cows Come Home(SPFA+邻接表)
    HDU1863畅通工程(prim)
    ACM国内外OJ网站大集合
    HDU1175连连看(BFS)
  • 原文地址:https://www.cnblogs.com/Xylophone/p/3938440.html
Copyright © 2011-2022 走看看