xhstar
xhstar
全部文章
题解
归档
标签
去牛客网
登录
/
注册
xhstar的博客
全部文章
/ 题解
(共17篇)
题解 | #删除有序链表中重复的元素-I#
/** struct ListNode { int val; struct ListNode *next; }; / class Solution {public: /* * * @param head ListNode类 * @return ListNode类 ...
2021-08-30
0
413
题解 | #求1+2+3+...+n#
class Solution {public: int Sum_Solution(int n) { return int(pow(n,2)+n)>>1; }};//没有get到出题的点是什么,反正没有用到乘除法和控制语句。
2021-08-29
0
339
题解 | #链表中环的入口结点#
/*struct ListNode { int val; struct ListNode next; ListNode(int x) : val(x), next(NULL) { }};*/class Solution {public: ListNode ...
2021-08-29
0
424
题解 | #链表中倒数最后k个结点#
/** struct ListNode { int val; struct ListNode *next; ListNode(int x) : val(x), next(nullptr) {} }; /class Solution {public: /** 代码中的类名、方法名、参数...
2021-08-29
0
435
题解 | #两个链表的第一个公共结点#
/*struct ListNode { int val; struct ListNode next; ListNode(int x) : val(x), next(NULL) { }};/class Solution {public: ListNo...
2021-08-29
0
380
题解 | #合并两个排序的链表#
/* struct ListNode { int val; struct ListNode *next; ListNode(int x) : &...
2021-08-29
0
400
题解 | #反转链表#
/*struct ListNode { int val; struct ListNode next; ListNode(int x) : val(x), next(NULL) { }};/class Solution {public: ListNo...
2021-08-28
0
413
首页
上一页
1
2
下一页
末页