咩咩大教主
咩咩大教主
全部文章
分类
归档
标签
去牛客网
登录
/
注册
咩咩大教主的博客
全部文章
(共4篇)
题解 | #链表中环的入口结点#
/* struct ListNode { int val; struct ListNode *next; ListNode(int x) : val(x), next(NULL) { } }; */ class Solution { public: ...
2024-10-01
0
92
题解 | #链表合并#
#include <iostream> #include <stdio.h> #include <sys/types.h> using namespace std; typedef struct ListNode { int data; struc...
2024-10-01
0
101
题解 | #反转链表#
/** * struct ListNode { * int val; * struct ListNode *next; * ListNode(int x) : val(x), next(nullptr) {} * }; */ class Solution { public: /*...
2024-10-01
0
80
题解 | #链表中倒数最后k个结点#
/** * struct ListNode { * int val; * struct ListNode *next; * ListNode(int x) : val(x), next(nullptr) {} * }; */ class Solution { public: /*...
2024-10-01
1
87