摘要: 1 #include 2 #include 3 char s[100]; 4 int b;//b用来统计输入的字符串遍历到哪里了。 5 struct node 6 { 7 struct node*left,*right; 8 char c;//定义一颗二叉树。 9 }; 10 struct node *creat() 11 { 12 struct ... 阅读全文
posted @ 2019-02-24 18:32 念文丶 阅读(330) 评论(0) 推荐(0) 编辑