摘要: 1 #include 2 #include 3 #include 4 char s[1000]; 5 int t; 6 struct node 7 { 8 char a; 9 struct node*left,*right; 10 }; 11 //这里struct student是类型,*表示是指针,也就 12 //是说函数create()返回值是一个st... 阅读全文
posted @ 2019-10-19 20:18 念文丶 阅读(212) 评论(0) 推荐(0) 编辑