2018年12月24日
摘要: /*遍历整棵树*/ int top = -1; INode_T* vtack[50]; while(NULL!=pNode||top!=-1) { if(NULL!=pNode) { // 前序处理 vtack[++top] = pNode; pNode... 阅读全文
posted @ 2018-12-24 08:48 静观海月 阅读(207) 评论(0) 推荐(0) 编辑