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;
        
        }
    };    
  • 相关阅读:
    c# 测试篇之Linq性能测试
    F# 笔记
    c# DataSource和BindingSource
    .net中配置的保存格式笔记
    泛型约束(转)
    c# 调用showDialog后需要Dispose
    c# 实现ComboBox自动模糊匹配
    c# 二进制或算法实现枚举的HasFlag函数
    C# WinForm自定义控件整理
    微软中文MSDN上的一些文章链接
  • 原文地址:https://www.cnblogs.com/Xylophone/p/3938440.html
Copyright © 2011-2022 走看看