摘要:
143. Reorder List Given a singly linked list L: L0?L1?…?Ln-1?Ln,reorder it to: L0?Ln?L1?Ln-1?L2?Ln-2?… You must do this in-place without altering the 阅读全文
摘要:
getchar:执行getchar()函数时,首先从输入缓存区读取字符,直到输入缓存区为空时才等待从键盘继续输入。scanf()之间不要有printf操作。 逗号表达式 a= (++a,1,2),只取最后一个操作进行赋值。 ++a,a++;++a是右值,原址操作。a++是左值,拷贝一份再操作,最后赋 阅读全文
摘要:
https://leetcode.com/problems/sort-list/description/ Sort a linked list in O(n log n) time using constant space complexity. 链表类题目找中间点使用双指针算法,要判断head - 阅读全文