Reverse nodes in K-group [leetcode] recursive and non-recursive Solutions

Source: Internet
Author: User

The question is not difficult, but error-prone, and various boundary conditions need to be considered.

The non-recursive code is as follows:

ListNode *reverseKGroup(ListNode *head, int k) {        if (head == NULL || k <= 1) return head;        ListNode * start = NULL, * end = NULL, *newHead = NULL, *preEnd = NULL;        while (true)        {            preEnd = end;            if (!check(head, k))            {                if (preEnd) preEnd->next = head;                if (!newHead) newHead = head;                return newHead;            }            reverse(head, k, &start, &end, &head);            if (!newHead) newHead = start;            if (preEnd) preEnd->next = start;        }        end->next = NULL;        return newHead;    }        bool check(ListNode* head, int k)    {        for (int i = 1; i <= k; i++, head = head->next)        {            if (head == NULL)            {                return false;            }        }        return true;    }        void reverse(ListNode *head, int k, ListNode** newHead, ListNode ** newTail, ListNode ** nextHead)    {        ListNode * pre, * next = head->next, * cur = head;        * newTail = cur;        for (int i = 2; i <= k; i++)        {            pre = cur;            cur = next;            next = cur->next;            cur->next = pre;        }        * newHead = cur;        * nextHead = next;    }

It would be easier to use recursive writing:

ListNode *reverseKGroup(ListNode *head, int k) {        if (k <= 1 || !check(head, k)) return head;        ListNode* start, *end;        reverse(head, k, &start, &end, &head);        end->next = reverseKGroup(head, k);        return start;    }        bool check(ListNode* head, int k)    {        for (int i = 1; i <= k; i++, head = head->next)            if (head == NULL)                return false;        return true;    }        void reverse(ListNode *head, int k, ListNode** newHead, ListNode ** newTail, ListNode ** nextHead)    {        ListNode * pre, * next = head->next, * cur = head;        * newTail = cur;        for (int i = 2; i <= k; i++)        {            pre = cur;            cur = next;            next = cur->next;            cur->next = pre;        }        * newHead = cur;        * nextHead = next;    }



Reverse nodes in K-group [leetcode] recursive and non-recursive Solutions

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.