摘要:
1 #include 2 #include 3 4 struct b_node { 5 6 struct b_node *left_child; 7 8 struct b_node *right_child; 9 10 struct b_node *parent;11 12 int value;13 };14 15 void build_node(struct b_node*,FILE *fp);16 17 int main()18 {19 20 int flen = 0;/* the length of file */2... 阅读全文