
我的存储
enazh
能狗能刚技术,敢上敢浪心态,稳得一匹
展开
专栏收录文章
- 默认排序
- 最新发布
- 最早发布
- 最多阅读
- 最少阅读
-
数据结构实验1
//建立一个存储A,B... 26个大写英文字母的线性链表,插入或删除字母使其位于适当位置 #define OK 1 #define NULL 0 #define OVERFLOW -2 #include<malloc.h> #include<process.h> //exit() #include<stdio.h> typedef char ElemT...原创 2019-09-11 16:33:08 · 788 阅读 · 0 评论 -
数据结构实验2
//二叉树的先中后序遍历和求叶子结点数目(二叉树的相关操作) #include "stdafx.h" #define OK 1 #define NULL 0 #define ERROR 0 #define OVERFLOW -2 #include<process.h> #include<malloc.h> #include<stdio.h> typedef i...原创 2019-09-11 16:50:31 · 640 阅读 · 0 评论 -
编译原理实验
//词法分析程序(识别关键字、标识符、常数、运算符、界符) #include <stdio.h> #include <iostream> using namespace std; #include <string.h> #include <fstream> #include<iomanip> #define norw 25 //关键字个...原创 2019-09-13 20:15:16 · 1144 阅读 · 0 评论 -
操作系统实验
//实验1-动态优先权(队列实现) #define OK 1 #define OVERFLOW -2 #define ERROR 0 #define TRUE 1 #define FALSE 0 #define null 0 #include<stdlib.h> #include<iomanip> #include<iostream> using name...原创 2019-09-18 16:54:56 · 331 阅读 · 0 评论