摘要: 单链表 数组模拟链表可以加快速度,更利于优化算法 #include<iostream> using namespace std; const int N = 100010; int e[N], ne[N], head, idx; void init() { head = -1; idx = 0; } 阅读全文
posted @ 2023-09-08 21:05 敲代码的6 阅读(22) 评论(0) 推荐(0)