数据结构
爱学编程的cyh
这个作者很懒,什么都没留下…
展开
-
数据结构实验:二叉树的前中后层遍历操作与销毁
编写程序实现二叉树的下列基本操作:(1) 根据教材126页的算法5.3,建立一颗“二叉树”。(2) 分别编写算法完成先序、中序、后序遍历二叉树,输出遍历序列。。(3) 使用队列完成层序遍历二叉树算法,输出遍历序列。。(4)销毁二叉树。代码如下:#include<stdio.h>#include<iostream>#include<windows.h>#include<malloc.h>#include<conio.h> #in原创 2020-06-01 19:07:34 · 335 阅读 · 0 评论 -
数据结构实验:回文序列的判定
以下代码利用顺序栈操作实现回文序列的判定#include<stdio.h> #include<string.h>#include<iostream>#define MAXSIZE 100#define ERROR 0#define OVERFLOW -1#define OK 1using namespace std;typedef int st...原创 2020-04-28 09:04:30 · 950 阅读 · 0 评论 -
数据结构实验:创建并合并两个有序单链表
#include<stdio.h>#include<iostream>using namespace std;#include<windows.h>#include<malloc.h>#include<conio.h> #define OK 1#define ERROR 0typedef int elemtype;typ...原创 2020-04-14 08:21:08 · 1547 阅读 · 3 评论