破竹GYH
破竹GYH
全部文章
分类
题解(33)
归档
标签
去牛客网
登录
/
注册
破竹GYH的博客
全部文章
(共2篇)
题解 | #【模板】链表#
#include<iostream> #include<string> using namespace std; class MyList{ public: struct Link{//建立一个链表 int val; stru...
C++
C
设计
链表
2022-05-16
4
463
题解 | #链表相加(二)#
```/** * Definition for singly-linked list. * struct ListNode { * int val; * ListNode *next; * ListNode(int x) : val(x), next(NULL) {...
C++
模拟
链表
归并排序
2022-05-11
0
399