IMcsevennn
IMcsevennn
全部文章
题解
归档
标签
去牛客网
登录
/
注册
IMcsevennn的博客
全部文章
/ 题解
(共4篇)
题解 | #NC4-判断链表中是否有环#
#include <stdbool.h> /** * struct ListNode { * int val; * struct ListNode *next; * }; */ /** * * @param head ListNode类 * @return bool...
C
链表
2021-10-31
0
483
题解 | #NC78-反转链表#
/** * struct ListNode { * int val; * struct ListNode *next; * }; */ /** * * @param pHead ListNode类 * @return ListNode类 */ struct ListNode...
C
链表
2021-10-30
0
492
题解 | #NC33-合并两个排序的链表#
/** * struct ListNode { * int val; * struct ListNode *next; * }; */ /** * * @param pHead1 ListNode类 * @param pHead2 ListNode类 * @return L...
C
链表
2021-10-30
4
538
题解 | #NC53-删除链表的倒数第n个节点#
/** * struct ListNode { * int val; * struct ListNode *next; * }; */ /****************************************************************************...
链表
C
C++
2021-10-30
1
540