SteLLar_LL
SteLLar_LL
全部文章
分类
归档
标签
去牛客网
登录
/
注册
SteLLar_LL的博客
全部文章
(共7篇)
题解 | #两个链表的第一个公共结点#
/* struct ListNode { int val; struct ListNode *next; ListNode(int x) : val(x), next(NULL) { } };*/ #include <list> class Solution { publi...
2023-09-28
0
207
题解 | #删除链表的倒数第n个节点#
/** * struct ListNode { * int val; * struct ListNode *next; * ListNode(int x) : val(x), next(nullptr) {} * }; */ class Solution { public: /*...
2023-09-28
0
212
题解 | #链表中环的入口结点#
/* struct ListNode { int val; struct ListNode *next; ListNode(int x) : val(x), next(NULL) { } }; */ class Solution { public: ...
2023-09-27
0
251
题解 | #链表中倒数最后k个结点#
/** * struct ListNode { * int val; * struct ListNode *next; * ListNode(int x) : val(x), next(nullptr) {} * }; */ #include <list> class Sol...
2023-09-19
0
278
题解 | #切割木头#
class Solution { public: /** * 代码中的类名、方法名、参数名已经指定,请勿修改,直接返回方法规定的值即可 * * * @param a int整型vector * @param k int整型 *...
2023-09-14
0
317
题解 | #二分查找#
class BinarySearch { public: int getPos(vector<int> A, int n, int val) { int left=0,right=n-1; while(left<=right) ...
2023-09-14
0
337
题解 | #反转链表#
/** * struct ListNode { * int val; * struct ListNode *next; * ListNode(int x) : val(x), next(nullptr) {} * }; */ class Solution { public: /*...
2023-08-01
0
343