星之月语
星之月语
全部文章
分类
题解(4)
归档
标签
去牛客网
登录
/
注册
星之月语的博客
全部文章
(共1篇)
题解 | #【模板】链表#
//数组模拟指针 #include using namespace std; const int N=100010; int e[N],idx,head,ne[N]; void intit(){ head=-1; idx=0; } void insert(int x,int y){//插入元素 in...
C++
链表
2022-04-09
2
398