Loading

摘要: 一些基础算法的模板,包括快排、归并、二分、高精度、前缀和、双指针、离散化等 阅读全文
posted @ 2022-08-06 23:04 一叶知秋` 阅读(58) 评论(0) 推荐(0)
摘要: 线性表 链表 操作:头插、尾插、插入指定数据、删除、反转 #include<stdio.h> #include<stdlib.h> typedef struct Node { int data; struct Node *next; }Node; void printlist(Node *L); N 阅读全文
posted @ 2022-08-06 11:16 一叶知秋` 阅读(58) 评论(0) 推荐(0)