⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 unittree.h

📁 这是一个人出钱要我帮他写的一个作业.是一个学生管理系统.里面运用了,二分查找树,list,等数据结构
💻 H
字号:
#include "string.h"
#include "iostream.h"
#define NULL 0

struct Node
{
	char course[7];
	Node *left;
	Node *right;
};

class unitTree
{
public:
	void add(char course[7]);
	void display();
	unitTree(){root=NULL;}
	
	~unitTree();
private:
	void show(Node* tmp);
	void destroy(Node *);
	Node *root;
};

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -