**
【問題描述】
給定一棵n個節點的二叉樹,輸出其前序遍歷,中序遍歷,後序遍歷,層次遍歷。
【輸入形式】
輸入共n+1行。
第1行為乙個整數n,描述節點個數。
其餘n行按順序描述第1,2,……,n個結點的左右子節點編號,0表示沒有相應子節點。
【輸出形式】
輸出共4行,分別為前序遍歷,中序遍歷,後序遍歷,層次遍歷。
【樣例輸入】
108 0
4 10 0
6 90 0
3 70 0
0 05 10
0 0【樣例輸出】
2 4 6 3 7 9 5 10 1 8
3 6 7 4 5 9 10 2 8 1
3 7 6 5 10 9 4 8 1 2
2 4 1 6 9 8 3 7 5 10
【資料範圍】
保證輸入的是合法的二叉樹。
1<= n <= 10000.
cpp檔案:
#include
#include
"linkqueue.h"
using
namespace std;
template
<
class
t>
class
btree
;template
<
class
t>
class
binarytree
:public btree
node
(t item, node* l =
null
, node* r =
null
, node* p =
null):
data
(item)
,left
(l),
right
(r),
parent
(p)~
node()
};node* root;
public
:binarytree()
:root
(null
)binarytree
(t x)
~binarytree()
;void
preorder()
const
;void
midorder()
const
;void
postorder()
const
;void
levelorder()
const
;void
creattree
(int n, t flag)
;private
:void
clear
(node*
& t)
;void
preorder
(node* t)
const
;void
midorder
(node* t)
const
;void
postorder
(node* t)
const;}
;template
<
class
t>
void binarytree
::clear
(binarytree
::node*
& t)
template
<
class
t>
binarytree::~
binarytree()
template
<
class
t>
void binarytree
::preorder
(binarytree
::node* t)
const
template
<
class
t>
void binarytree
::preorder()
const
template
<
class
t>
void binarytree
::postorder
(binarytree
::node* t)
const
template
<
class
t>
void binarytree
::postorder()
const
template
<
class
t>
void binarytree
::midorder
(binarytree
::node* t)
const
template
<
class
t>
void binarytree
::midorder()
const
template
<
class
t>
void binarytree
::levelorder()
const
}template
<
class
t>
void binarytree
::creattree
(int n, t flag)
for(
int i =
1; i <= n;
++i)
if(rdata != flag)
}for
(int i =
1; i <= n;
++i)
}int
main()
標頭檔案linkqueue,h
#pragma once
template
<
class
elemtype
>
class
queue};
template
<
class
elemtype
>
class
linkqueue
:public queue
node()
:next
(null)~
node()
};node* front,
* rear;
public
:linkqueue()
;~linkqueue()
;bool
isempty()
const
;void
enqueue
(const elemtype& x)
; elemtype dequeue()
; elemtype gethead()
const;}
;template
<
class
elemtype
>
linkqueue
::linkqueue()
template
<
class
elemtype
>
linkqueue::~
linkqueue()
}template
<
class
elemtype
>
bool linkqueue
::isempty()
const
template
<
class
elemtype
>
void linkqueue
::enqueue
(const elemtype& x)
template
<
class
elemtype
>
elemtype linkqueue
::dequeue()
template
<
class
elemtype
>
elemtype linkqueue
::gethead()
const
二叉樹的遍歷 二叉樹遍歷與儲存
在資料結構中,二叉樹是非常重要的結構。例如 資料庫中經常用到b 樹結構。那麼資料庫是如何去單個查詢或者範圍查詢?首先得理解二叉樹的幾種遍歷順序 先序 中序 後序 層次遍歷。先序 根節點 左子樹 右子樹 中序 左子樹 根節點 右子樹 後序 左子樹 右子樹 根節點 按層級 class node if c...
構建二叉樹 遍歷二叉樹
陣列法構建二叉樹 public class main public static void main string args 用陣列的方式構建二叉樹 public static void createbintree 把linkedlist集合轉成二叉樹的形式 for int j 0 j 最後乙個父節...
玩轉二叉樹(二叉樹的遍歷)
時間限制 400 ms 記憶體限制 65536 kb 長度限制 8000 b 判題程式 standard 作者 陳越 給定一棵二叉樹的中序遍歷和前序遍歷,請你先將樹做個鏡面反轉,再輸出反轉後的層序遍歷的序列。所謂鏡面反轉,是指將所有非葉結點的左右孩子對換。這裡假設鍵值都是互不相等的正整數。輸入格式 ...