牛客628452140号
牛客628452140号
全部文章
分类
归档
标签
去牛客网
登录
/
注册
牛客628452140号的博客
全部文章
(共2篇)
题解 | #字符串变形#
class Solution { public: string trans(string s, int n) { // write code here stack<char> a1; stack<char> a2; ...
2023-02-28
0
297
题解 | #反转链表#
/* struct ListNode { int val; struct ListNode *next; ListNode(int x) : val(x), next(NULL) { } };*/ class Solution { public: ListNode* Rever...
2023-02-24
0
329