學習點滴 資料結構 二叉樹 二叉樹轉換為其映象。

2021-06-06 20:39:21 字數 758 閱讀 3348

#include #include #include #include #include #include #define leaf -1

using namespace std;

typedef struct btreenodebtreenode,*btree;

btreenode* createtree()else

return t;

}//注意swap()函式。

void swap(btreenode ** left,btreenode** right)

void treemirror(btreenode* &root)

swap(&(root->lchild),(&root->rchild));

treemirror(root->lchild);

treemirror(root->rchild);

}void preorder(btreenode* root)

if(root->lchild != null)

if(root->rchild !=null)

}void mirrornonrecursive(btreenode * &root)

queueque;

que.push(root);

while(!que.empty())

if(tmp->rchild != null)

} } main()

資料結構 二叉樹 反轉二叉樹

include using namespace std define maxsize 1000 struct binary tree node class queue queue queue void queue push binary tree node btn binary tree node ...

資料結構 樹結構 二叉樹 完全二叉樹 滿二叉樹

樹結構是一種描述非線性層次關係的資料結構。除根結點外,其餘每個結點有且僅有乙個直接前驅。每個結點可以有任意多個直接後繼。英文名詞表示 tree,root,node,leaf,edge,child,subtree 要麼二叉樹沒有根結點,是一棵空樹。要麼二叉樹由根結點,左子樹,右子樹組成,且左子樹和右子...

二叉樹 二叉樹

題目描述 如上所示,由正整數1,2,3 組成了一顆特殊二叉樹。我們已知這個二叉樹的最後乙個結點是n。現在的問題是,結點m所在的子樹中一共包括多少個結點。比如,n 12,m 3那麼上圖中的結點13,14,15以及後面的結點都是不存在的,結點m所在子樹中包括的結點有3,6,7,12,因此結點m的所在子樹...