
oj
橙子yc
这个作者很懒,什么都没留下…
展开
专栏收录文章
- 默认排序
- 最新发布
- 最早发布
- 最多阅读
- 最少阅读
-
并查集(模版)洛谷P3367
并查集原创 2023-03-11 14:55:52 · 357 阅读 · 0 评论 -
【无标题】
dp原创 2022-04-06 15:37:09 · 99 阅读 · 0 评论 -
2020-12-28
浙商大oj——链表 题目:链表链接并插入第一位 #include <stdio.h> #include <stdlib.h> #include<string.h> struct node{ int data; struct node *next; }; int main() { //输入 int n,min,i,j; struct node* head1=(struct node*)malloc(sizeof(struct node)); struct n原创 2020-12-28 22:48:29 · 141 阅读 · 0 评论