亚洲激情专区-91九色丨porny丨老师-久久久久久久女国产乱让韩-国产精品午夜小视频观看

溫馨提示×

溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊×
其他方式登錄
點擊 登錄注冊 即表示同意《億速云用戶服務條款》

C++怎么實現每k個一組翻轉鏈表

發布時間:2021-07-14 09:59:33 來源:億速云 閱讀:264 作者:chen 欄目:開發技術

本篇內容主要講解“C++怎么實現每k個一組翻轉鏈表”,感興趣的朋友不妨來看看。本文介紹的方法操作簡單快捷,實用性強。下面就讓小編來帶大家學習“C++怎么實現每k個一組翻轉鏈表”吧!

Reverse Nodes in k-Group 每k個一組翻轉鏈表

Given a linked list, reverse the nodes of a linked list k at a time and return its modified list.

k is a positive integer and is less than or equal to the length of the linked list. If the number of nodes is not a multiple of k then left-out nodes in the end should remain as it is.

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

Note:

  • Only constant extra memory is allowed.

  • You may not alter the values in the list's nodes, only nodes itself may be changed.

這道題讓我們以每k個為一組來翻轉鏈表,實際上是把原鏈表分成若干小段,然后分別對其進行翻轉,那么肯定總共需要兩個函數,一個是用來分段的,一個是用來翻轉的,以題目中給的例子來看,對于給定鏈表 1->2->3->4->5,一般在處理鏈表問題時,大多時候都會在開頭再加一個 dummy node,因為翻轉鏈表時頭結點可能會變化,為了記錄當前最新的頭結點的位置而引入的 dummy node,加入 dummy node 后的鏈表變為 -1->1->2->3->4->5,如果k為3的話,目標是將 1,2,3 翻轉一下,那么需要一些指針,pre 和 next 分別指向要翻轉的鏈表的前后的位置,然后翻轉后 pre 的位置更新到如下新的位置:

-1->1->2->3->4->5
|        |  |
pre      cur next

-1->3->2->1->4->5
|     |  |
cur   pre next

以此類推,只要 cur 走過k個節點,那么 next 就是 cur->next,就可以調用翻轉函數來進行局部翻轉了,注意翻轉之后新的 cur 和 pre 的位置都不同了,那么翻轉之后,cur 應該更新為 pre->next,而如果不需要翻轉的話,cur 更新為 cur->next,代碼如下所示:

解法一:

class Solution {
public:
    ListNode* reverseKGroup(ListNode* head, int k) {
        if (!head || k == 1) return head;
        ListNode *dummy = new ListNode(-1), *pre = dummy, *cur = head;
        dummy->next = head;
        for (int i = 1; cur; ++i) {
            if (i % k == 0) {
                pre = reverseOneGroup(pre, cur->next);
                cur = pre->next;
            } else {
                cur = cur->next;
            }
        }
        return dummy->next;
    }
    ListNode* reverseOneGroup(ListNode* pre, ListNode* next) {
        ListNode *last = pre->next, *cur = last->next;
        while(cur != next) {
            last->next = cur->next;
            cur->next = pre->next;
            pre->next = cur;
            cur = last->next;
        }
        return last;
    }
};

我們也可以在一個函數中完成,首先遍歷整個鏈表,統計出鏈表的長度,然后如果長度大于等于k,交換節點,當 k=2 時,每段只需要交換一次,當 k=3 時,每段需要交換2此,所以i從1開始循環,注意交換一段后更新 pre 指針,然后 num 自減k,直到 num<k 時循環結束,參見代碼如下:

解法二:

class Solution {
public:
    ListNode* reverseKGroup(ListNode* head, int k) {
        ListNode *dummy = new ListNode(-1), *pre = dummy, *cur = pre;
        dummy->next = head;
        int num = 0;
        while (cur = cur->next) ++num;
        while (num >= k) {
            cur = pre->next;
            for (int i = 1; i < k; ++i) {
                ListNode *t = cur->next;
                cur->next = t->next;
                t->next = pre->next;
                pre->next = t;
            }
            pre = cur;
            num -= k;
        }
        return dummy->next;
    }
};

我們也可以使用遞歸來做,用 head 記錄每段的開始位置,cur 記錄結束位置的下一個節點,然后調用 reverse 函數來將這段翻轉,然后得到一個 new_head,原來的 head 就變成了末尾,這時候后面接上遞歸調用下一段得到的新節點,返回 new_head 即可,參見代碼如下:

解法三:

class Solution {
public:
    ListNode* reverseKGroup(ListNode* head, int k) {
        ListNode *cur = head;
        for (int i = 0; i < k; ++i) {
            if (!cur) return head;
            cur = cur->next;
        }
        ListNode *new_head = reverse(head, cur);
        head->next = reverseKGroup(cur, k);
        return new_head;
    }
    ListNode* reverse(ListNode* head, ListNode* tail) {
        ListNode *pre = tail;
        while (head != tail) {
            ListNode *t = head->next;
            head->next = pre;
            pre = head;
            head = t;
        }
        return pre;
    }
};

到此,相信大家對“C++怎么實現每k個一組翻轉鏈表”有了更深的了解,不妨來實際操作一番吧!這里是億速云網站,更多相關內容可以進入相關頻道進行查詢,關注我們,繼續學習!

向AI問一下細節

免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。

c++
AI

延庆县| 汶川县| 临湘市| 淳化县| 白朗县| 共和县| 揭西县| 全南县| 商都县| 皋兰县| 台前县| 巴彦淖尔市| 西藏| 荣成市| 屏东市| 宜章县| 甘德县| 桐庐县| 洱源县| 津南区| 泗阳县| 于都县| 靖西县| 蒙山县| 佛教| 区。| 彝良县| 肇庆市| 青州市| 抚远县| 广德县| 秀山| 百色市| 永泰县| 曲周县| 潼关县| 建始县| 绥滨县| 南木林县| 启东市| 黑水县|