菜鸡的笔试记录 第一题 将链表节点便利,先头插再尾插 class Solution { public: ListNode* formatList(ListNode* head) { ListNode* dummy = new ListNode(-1); ListNode* ptr = head; ListNode* flagtail = head; while (ptr != nullptr && ptr->next != nullptr) { ListNode* h =...