摘要:
实验5-二叉树综合运算 实验目的 掌握链队列的应用; 掌握二叉树的存储方式和基本算法的实现; 代码 #include <iostream> using namespace std; #define TRUE 1 #define FALSE 0 #define OK 1 #define ERROR 0 阅读全文
摘要:
实验4-串模式匹配(BF和KMP算法) 实验目的 掌握串的定义及基本操作的实现; 掌握串的模式匹配算法及实现。 代码 #include <iostream> #include <cstring> using namespace std; #define OK 1 #define ERROR 0 #d 阅读全文