赞
踩
力扣24题
给你一个链表,两两交换其中相邻的节点,并返回交换后链表的头节点。你必须在不修改节点内部的值的情况下完成本题(即,只能进行节点交换)。
解答:这个题也是很绕,所以我详细解释一下,就用上边的题为例子,小白看,大神就不用看了。
- class Solution {
- public:
- ListNode* swapPairs(ListNode* head) {
- //if (head == nullptr || head->next == nullptr ) return head;
- ListNode* dummyHead = new ListNode(0,head); // 1
- ListNode* cur = dummyHead; // 2
- while(cur->next != nullptr && cur->next->next != nullptr) // 3
- {
- ListNode* temp = cur->next; // 4
- ListNode* temp1 = cur->next->next->next; // 5
- cur->next = cur->next->next; // 6
- cur->next->next = temp; // 7
- cur->next->next->next = temp1; // 8
-
- cur = cur->next->next; // 9
- }
- return dummyHead->next; // 10
-
- }
- };
Copyright © 2003-2013 www.wpsshop.cn 版权所有,并保留所有权利。