Skip to content

Instantly share code, notes, and snippets.

@kelvin-fly
kelvin-fly / 9_tree.c
Created September 11, 2012 00:59
the basic of tree
#include <stdio.h>
#define MAXSIZE 100
typedef char DataType;
typedef struct Node
{
DataType data;
struct Node *left;
struct Node *right;
}BTNode, *PBTNode, *BiTreeLink;
@kelvin-fly
kelvin-fly / 9_link.c
Created September 11, 2012 00:35
the basic of link's use