?? tree.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 + -