树的先序遍历
摘要:#include<stdio.h>#include<stdlib.h>#define NULL 0#define OK 1#define ERROR -1int n=0;typedef struct Bnode{char data;struct Bnode *lchild,*rchild;}Bnode;Bnode *CreateTree(Bnode *T){char ch;...
阅读全文
posted @
2009-05-08 14:13
Jesus Program
阅读(252)
推荐(0)