Gsdxhg
Gsdxhg
全部文章
题解
hh(1)
服务器(1)
读书笔记(3)
归档
标签
去牛客网
登录
/
注册
Gsdxhg的博客
全部文章
/ 题解
(共2篇)
合并排序链表
1.迭代实现 class Solution { public: ListNode* Merge(ListNode* pHead1, ListNode* pHead2) { auto res=pHead1; ListNode* pre=0; auto...
2019-11-03
0
626
用栈保存节点
遍历链表,使用一个栈保存每一个节点,然后从尾结点开始依次出栈依次出栈。 class Solution { public: ListNode* ReverseList(ListNode* pHead) { if (pHead==0)return 0; stack...
2019-10-19
0
602