摘要:
#include "stdio.h" #include "stdlib.h" #define TRUE 1 #define FALSE 0 typedef int Boolean; typedef char VertexType; typedef int EdgeType; #define MAXSIZE 9 #define MAXEDGE 15 #define ... 阅读全文
摘要:
#include<stdio.h> #include<stdlib.h> #include<string.h> int index=1; typedef char String[24]; String str; /* 用于构造二叉树(存储的数据) */ void StrAssign(String s 阅读全文