摘要: 用栈实现树遍历 1 #include<stdio.h> 2 #include<string.h> 3 #define MAXSIZE 30 4 5 int Pre[MAXSIZE],In[MAXSIZE],Post[MAXSIZE]; 6 void solve(int preL,int inL,in 阅读全文
posted @ 2019-05-01 18:00 cxc1357 阅读(157) 评论(0) 推荐(0)