摘要:
题目:25. K 个一组翻转链表 先看怎么反转链表(写不出来的话,我建议你爪巴): class Solution { public: ListNode* reverseList(ListNode* head) { if (head == nullptr) return nullptr; auto p 阅读全文
摘要:
📓 APUE 一书的第七章学习笔记。 进程终止 有 8 种方式可以使得进程终止,5 种为正常方式: Return from main Calling exit() Calling _exit or _Exit Return of the last thread from its start rou 阅读全文