摘要: 1 #include <stdio.h> 2 #include <stdlib.h> 3 char s[1000]; 4 int top; 5 struct node 6 { 7 char c; 8 struct node *left, *right; 9 }; 10 struct node * c 阅读全文
posted @ 2019-11-11 21:51 念文丶 阅读(182) 评论(0) 推荐(0)
摘要: 1 #include <stdio.h> 2 #include <stdlib.h> 3 int n,m; 4 struct node 5 { 6 char date; 7 int left,right; 8 } tree1[12],tree2[12]; 9 void creat(struct no 阅读全文
posted @ 2019-11-11 21:30 念文丶 阅读(195) 评论(0) 推荐(0)