牛客767752055号
牛客767752055号
全部文章
分类
归档
标签
去牛客网
登录
/
注册
牛客767752055号的博客
全部文章
(共23篇)
题解 | #链表中环的入口结点#
/* struct ListNode { int val; struct ListNode *next; ListNode(int x) : val(x), next(NULL) { } }; */ class Solution { public: ...
2023-03-09
0
209
题解 | #重排链表#
/** * Definition for singly-linked list. * struct ListNode { * int val; * ListNode *next; * ListNode(int x) : val(x), next(NULL) {} ...
2023-03-08
0
227
题解 | #字符串加密#
#include <iostream> #include <set> using namespace std; string f(string key){ set<int> dc; string zmk; for(int i=0;i<...
2023-01-12
0
250
首页
上一页
1
2
3
下一页
末页