Algorithm
lc24_两两交换链表中的节点
就是模拟指针调换 。 题解的 dummyHead 更简洁…学习之。
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59
| #include <bits/stdc++.h> using namespace std;
struct ListNode { int val; ListNode *next; ListNode() : val(0), next(nullptr) {} ListNode(int x) : val(x), next(nullptr) {} ListNode(int x, ListNode *next) : val(x), next(next) {} };
class Solution { public: ListNode* swapPairs(ListNode* head) { if (!head || !head->next) { return head; } ListNode* l = head; ListNode* r = head->next; ListNode* next_l = r->next; r->next = l; l->next = next_l; head = r;
ListNode* dummy_head = l; while (next_l && next_l->next) { l = next_l; r = next_l->next; next_l = r->next; r->next = l; l->next = next_l; dummy_head->next = r; dummy_head = l; }
return head; } };
int main() { Solution sol; ListNode* test = new ListNode(1); test->next = new ListNode(2); test->next->next = new ListNode(3); test->next->next->next = new ListNode(4); ListNode* out = sol.swapPairs(test); while (out) { cout << out->val << endl; out = out->next; } return 0; }
|
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18
| class Solution { public: ListNode* swapPairs(ListNode* head) { ListNode* dummyHead = new ListNode(0); dummyHead->next = head; ListNode* temp = dummyHead; while (temp->next != nullptr && temp->next->next != nullptr) { ListNode* node1 = temp->next; ListNode* node2 = temp->next->next; temp->next = node2; node1->next = node2->next; node2->next = node1; temp = node1; } return dummyHead->next; } }; 链接:https:
|
Review
治愈年轻人心理健康的新方式【TED演讲】
关注年轻人的心理健康,社会才能有良好的未来。这里是通过基于年轻人模型来构建针对性的心理咨询来帮助年轻人的心理问题。
Tips
修改docker容器的目录映射的3种方式
Share
关于VScode解析leveldb的namespace报错