// head存储链表头,e[]存储节点的值,ne[]存储节点的next指针,idx表示当前用到了哪个节点
int head, e[N], ne[N], idx;
// 初始化
void init()
{
head = -1;
idx = 0;
}
// 在链表头插入一个数a
void insert(int a)
{
e[idx] = a, ne[idx] = head, ...
English Article | Word Count | Duration | Accuracy | Speed | Backspace | Error | Slogan |
---|---|---|---|---|---|---|---|
《单列表模板》 | 276字 | 2.0分钟 | 98% | 23 CPM | 7 次 | 1 | 不及格,加强练习! |
The wrong word this time: 链 | |||||||
Suggestion:
总的来说速度上可能不是很快,多练习键位、或英文文章巩固一下,然后试着对应的输入法练习上,多增加词组等、一次性多字的输出,这样可以总体上提高部份速度。
|
|||||||
Inspirational quotes: 凡事皆有终结,因此,耐心是赢得成功的一种手段。 ——高尔基 | |||||||
What do you think of this article? Give it a rating and let it serve as a guiding light for others |