摘要: 1 #include 2 #include 3 #include 4 struct node 5 { 6 char a; 7 struct node*left,*right; 8 }; 9 int max(int a,int b) 10 { 11 if(a>b)return a; 12 else return b; 13 } 14 stru... 阅读全文
posted @ 2019-10-20 10:44 念文丶 阅读(232) 评论(0) 推荐(0) 编辑