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

    思路:将前k个结点完全逆转。主要就是一个swap链表节点的升级版本,将前k个结点完全逆转,而不是两个结点的逆转。首先我们定义一个逆序链表函数,然后在进行遍历到k,然后调用逆序链表函数,前k个结点都要访问2次,故时间复杂度为O(2*n)=O(n).

    /**
     * Definition for singly-linked list.
     * struct ListNode {
     *     int val;
     *     ListNode *next;
     *     ListNode(int x) : val(x), next(NULL) {}
     * };
     */
    class Solution {
    public:
        ListNode *reverse(ListNode *beg,ListNode *end)
        {
            if(beg==NULL)
                return beg;
            ListNode *head=beg;
            ListNode *pCur=beg->next;
            while(pCur!=NULL)
            {
                ListNode *pNext=pCur->next;
                pCur->next=beg;
                beg=pCur;
                pCur=pNext;
            }
            end->next=beg;   //注意这里,并不是代表末尾函数
            return head;
        }
        ListNode *reverseKGroup(ListNode *head, int k) {
            if(head==NULL||k<=1)
                return head;
            ListNode *pHead=new ListNode(0);
            pHead->next=head;
            ListNode *pPre=pHead;
            ListNode *pCur=head;
            int count=0;
            while(pCur!=NULL)
            {
                count++;
                ListNode *pNext=pCur->next;
                if(count==k)
                {
                    pCur->next=NULL;  //这里要是pCur->next指向NULL,为reverse函数终止做准备
                    pPre=reverse(pPre->next,pPre);
                    pPre->next=pNext;           //返回逆转后的末尾结点(原来的头结点)要指向k+1结点
                    count=0;
                }
                pCur=pNext;
            }
            return pHead->next;//注意这里不能返回head,因为head是原来链表的头结点,不是逆转后的头结点了。
        }
    };
  • 相关阅读:
    vulnhub靶场 之 DC -1
    PHP反序列化中过滤函数使用不当导致的对象注入
    网络内生安全试验场-CTF答题夺旗赛(第四季)web知识
    BUUCTF 随便注
    SWPUCTF 2019 web
    春秋-SQLi题
    i春秋-“百度杯”CTF比赛 十月场-Login
    i春秋-第三届“百越杯”福建省高校网络空间安全大赛-Do you know upload?
    i春秋CTF-“百度杯”CTF比赛 九月场 XSS平台
    终于等到你,最强 IDE Visual Studio 2017 正式版发布
  • 原文地址:https://www.cnblogs.com/awy-blog/p/3708930.html
Copyright © 2011-2022 走看看