摘要: 前序遍历 void preOrder(BiTree bt){ if (bt!=NULL){ BiTree Stack[maxSize]; int top = -1; Stack[++top]=bt; BiTree p; while (top!=1){ p=Stack[top--]; visit(p) 阅读全文
posted @ 2022-12-20 17:41 sugare 阅读(41) 评论(0) 推荐(0)