題目描述
建立二叉樹,然後實現:輸出先序遍歷、中序遍歷、後序遍歷的結果。
輸入第一行:結點個數n。
以下行:每行3個數,第乙個是父親,後兩個依次為左右孩子,0表示空。
輸出輸出:根、先中後序遍歷結果。
樣例輸入
81 2 4
2 0 0
4 8 0
3 1 5
5 6 0
6 0 7
8 0 0
7 0 0
樣例輸出
33 1 2 4 8 5 6 7
2 1 8 4 3 6 7 5
2 8 4 1 7 6 5 3
program p26847;
type
treetype=record
father:integer;
lch,rch:integer;
end;
vartree:array[1..200] of treetype;
n,m,t:integer;
procedure init;
var f,l,r,i:integer;
begin
readln(n);
for i:=1 to n do
begin
readln(f,l,r); tree[f].lch:=l; tree[f].rch:=r;
if l<>0 then tree[l].father:=f;
if r<>0 then tree[r].father:=f;
end;
end;
function root:integer;
var i:integer;
begin
for i:=1 to n do
if tree[i].father=0 then
begin
root:=i;
exit;
end;
end;
procedure preorder(t:integer);
begin
if t<>0 then
begin
write(t,' ');
preorder(tree[t].lch);
preorder(tree[t].rch);
end;
end;
procedure inorder(t:integer);
begin
if t<>0 then
begin
inorder(tree[t].lch);
write(t,' ');
inorder(tree[t].rch);
end;
end;
procedure sucorder(t:integer);
begin
if t<>0 then
begin
sucorder(tree[t].lch);
sucorder(tree[t].rch);
write(t,' ');
end;
end;
begin
init;
t:=root;
writeln(t);
preorder(t);writeln;
inorder(root);writeln;
sucorder(t);
end.
二叉樹的遍歷 二叉樹遍歷與儲存
在資料結構中,二叉樹是非常重要的結構。例如 資料庫中經常用到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 作者 陳越 給定一棵二叉樹的中序遍歷和前序遍歷,請你先將樹做個鏡面反轉,再輸出反轉後的層序遍歷的序列。所謂鏡面反轉,是指將所有非葉結點的左右孩子對換。這裡假設鍵值都是互不相等的正整數。輸入格式 ...