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

📄 tree.h

📁 这是我在英国的C语言导师自己所写的一个二叉树的程序。
💻 H
字号:
/* Header file for binary tree applications.

	Author: Michael Boyd, adapted from Kelly and Pohl
   Date  : 25-MAY-2004
   File  : tree.h

*/

#if !defined (TREE_H)
#define TREE_H

#include <assert.h>
#include <stdio.h>
#include <stdlib.h>
#include <conio.h>

typedef char DATA;

typedef struct node
{
	DATA	d;
	struct node *left;
	struct node *right;
} NODE;

typedef NODE *BTREE;

#include "fct_proto.h"

#endif

⌨️ 快捷键说明

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