非遞歸後序遍歷二叉樹版本二

思路:html

標記一個結點的左右子樹是否已經被訪問過,葉子節點也進行標記算法

拓展:code

遍歷過程當中讀者會發現,某一時刻,從棧底到棧頂的元素恰好構成當前訪問節點的到根節點的路徑。利用這一特性能夠實現兩個算法:(1)根到某節點的路徑(2)兩個節點的最近公共祖先
htm

typeDef struct{blog

BiTree t;
int tag;

}Stack遞歸

void f(BiTree bt, ElemType x){get

Stack s[];
top = 0;
while(bt!=null||top>0)
    while(bt!=null){
        s[++top].t = bt;
        s[top].tag = 0;
        bt=bt->lchild;
    }
//注意這裏是while   不是if
while(top!=0&&s[top].tag==1)
    print(visit(s[top--]));

if(top!=0){
    s[top].tag = 1;
    bt = s[top].t->rchild;
}

}it


您可能感興趣的
class

相關文章
相關標籤/搜索