學習1989
學習1989
全部文章
分类
题解(2)
归档
标签
去牛客网
登录
/
注册
學習1989的博客
全部文章
(共5篇)
题解 | #【模板】队列#
#include <stdio.h> #include <stdlib.h> #include <string.h> // 队列节点结构体 typedef struct node { int val; struct node *next; } *...
2022-11-29
0
212
题解 | #【模板】栈(头插链表入栈)#
#include <stdio.h> #include <stdlib.h> #include <string.h> typedef struct stack { int val; struct stack *next; } *Stack, st...
2022-11-28
0
234
题解 | #【模板】链表C语言#
C语言链表解题#include <stdio.h> #include <stdlib.h> #include <string.h> typedef unsigned long long ull; typedef long long ll; #define MAX...
2022-11-27
0
274
题解 | #小白鼠排队#
// 写一个C语言版本吧 // 快速排序实现排序 // 采用指针和动态内存 #include <stdio.h> #include <string.h> #include <stdlib.h> #include <math.h> #include &l...
C
2022-04-20
2
406
题解 | #学分绩点#
写一个c语言版本吧 #include <stdio.h> #include <stdlib.h> #include <string.h> #include <math.h> double back_gpa(int sc) { // the f...
C
2022-04-20
0
333