进阶的小菜鸡🐔
进阶的小菜鸡🐔
全部文章
分类
归档
标签
去牛客网
登录
/
注册
进阶的小菜鸡🐔的博客
全部文章
(共3篇)
题解 | #删除链表的倒数第n个节点#
struct ListNode* removeNthFromEnd(struct ListNode* head, int n) { int num = 0; &n...
C
链表
2022-08-18
1
278
题解 | #删除有序链表中重复的元素-I#
struct ListNode* deleteDuplicates(struct ListNode* head) { if(head == NULL) &n...
链表
C
2022-08-18
5
312
题解 | #链表中倒数最后k个结点#
struct ListNode* FindKthToTail(struct ListNode* pHead, int k) { struct ListNode *p&nbs...
链表
C
2022-08-05
0
319