寒假实训
Lyang0.0
这个作者很懒,什么都没留下…
展开
-
根据表达式求出真值表及主析取主合取——离散数学实训
#include<stdio.h> #include<stdlib.h> #include<string.h> #include<math.h> #define N 1005 #define ll long long char str[N]; char sta[N]; char a[N]; void houzhui()//数组模拟栈求后缀表达式...原创 2020-02-12 10:11:36 · 1101 阅读 · 0 评论 -
哈夫曼树——离散数学实训
#include<stdio.h> #include<stdlib.h> #include<string.h> const int maxn = 1e5 + 5; struct node { int w, pre, l, r; }; struct tree { int m, root; struct node *ht; }; void...原创 2020-02-12 10:10:11 · 664 阅读 · 0 评论 -
火车车次查询系统——时间最短,价格最优(非空双向循环链表)C语言Linux实训作业
huoche.c #include <stdio.h> #include <stdlib.h> #include <string.h> #include "huoche.h" #define MAX 10001000 LLIST *p_checi=NULL; char from[40]; char arrive[40]; int between; int...原创 2020-02-12 10:07:10 · 516 阅读 · 0 评论 -
基础的电子词典——单词的增删查找(平衡二叉排序树) c语言Linux实训作业
a.c #include <stdlib.h> #include <stdio.h> #include <string.h> #include "a.h" #include "tree.h" FILE *pf; FILE *tf; struct node_wo *tree = NULL; char *a_to_A(char str[]) { int ...原创 2020-02-12 10:02:33 · 245 阅读 · 0 评论 -
基础的学生管理系统——增,删,查,找(非空双向循环链表)C语言Linux实训作业
list.c #include<stdio.h> #include<stdlib.h> #include<string.h> #include "llist.h" LLIST *llist_creat(int size) { LLIST *new; new = malloc(sizeof(LLIST)); if(new == NULL) { r...原创 2020-02-12 09:58:25 · 259 阅读 · 0 评论