內容:
(1)請參照鍊錶的adt模板,設計二叉樹並逐步完善的抽象資料型別。(由於該環境目前僅支援單檔案的編譯,故將所有內容都集中在乙個原始檔內。在實際的設計中,推薦將抽象類及對應的派生類分別放在單獨的標頭檔案中。參考教材、課件,以及網盤中的鍊錶adt原型檔案,自行設計二叉樹的adt。)
注意:二叉樹adt的基本操作的演算法設計很多要用到遞迴的程式設計方法。
(2)基本操作17:在二叉樹的二叉鍊錶儲存形式建立的基礎上,使用遞迴的程式設計方法,設計並完成統計度為2的結點個數的演算法。完成後將其加入到二叉樹的adt基本操作集中。
(1)//統計度為2的結點個數(外殼部分,使用者函式)
//統計度為2的結點個數
template
int countdegreetwo(binarytree&t);
(2)統計度為2的結點個數(遞迴部分,成員函式)
//統計度為2的結點個數
template
int binarytree::countdegreetwo( binarytreenode*t ) const;
第一行:表示無孩子或指標為空的特殊分隔符
第二行:二叉樹的先序序列(結點元素之間以空格分隔)
第一行:度為2的結點個數
#a b # c d # # e # # f # g # h # #
// tree.cpp : 此檔案包含 "main" 函式。程式執行將在此處開始並結束。
//#include #include #include #include #include #include #include #include #include #include #include #include #include #include #include using namespace std;
vectordepartstring_string(string data)
//————————————————
templatestruct tree_point ;
templateclass binarytree
~binarytree()
void binarytree_fron(vectorlis, elemtype nut)
tree_point* now,*creat;
root->data = lis[0];
root->l_child = null;
root->r_child = null;
s.push(root);
for(i=1;i;
creat->l_child = null;
creat->r_child = null;
creat->data = lis[i];
if (lis[i] == nut)
continue;
}now = s.top();
s.pop();
now->r_child = null;
now->l_child = creat;
s.push(creat);
}*///*****====
stack*> s;
tree_point* p_parent = null,* p_child = null;
int i = 0;
int flag = 0;//控制左右
p_parent = new tree_point;
p_parent->data = lis[i];
p_parent->l_child = p_parent->r_child = null;
s.push(p_parent);
root = p_parent;
i = 1;
flag = 0;
while (!s.empty())
else if (flag == 1)
s.push(p_parent);
flag = 0;
}else
i++;
} }tree_point* get_root()
void qianxu(tree_point* t)
void zhongxu(tree_point* t)
void houxu(tree_point* t)
void out_lis()
outlist.clear();
} int cnt = 0;
void t_cnt(tree_point* t)
int twocnt() };
int main()
cout << part_in.size() << endl;
cout << nulls << endl;*/
//***********************************===
a.binarytree_fron(part_in, nulls);
/*a.qianxu(a.get_root());
a.out_lis();
a.zhongxu(a.get_root());
a.out_lis();
a.houxu(a.get_root());
a.out_lis();*/
cout
}
二叉樹 二叉樹
題目描述 如上所示,由正整數1,2,3 組成了一顆特殊二叉樹。我們已知這個二叉樹的最後乙個結點是n。現在的問題是,結點m所在的子樹中一共包括多少個結點。比如,n 12,m 3那麼上圖中的結點13,14,15以及後面的結點都是不存在的,結點m所在子樹中包括的結點有3,6,7,12,因此結點m的所在子樹...
二叉樹 判斷二叉樹是否為完全二叉樹
問題描述 判斷一棵二叉樹是否為完全二叉樹。知識點 完全二叉樹是指除二叉樹的最後一層外,其他各層的節點數達到最大個數,且最後一層的葉節點從左到右連續存在,只缺右側若干節點。演算法實現 class node is complete binary tree public static boolean is...
樹 二叉樹 滿二叉樹 完全二叉樹 完滿二叉樹
目錄名稱作用根 樹的頂端結點 孩子當遠離根 root 的時候,直接連線到另外乙個結點的結點被稱之為孩子 child 雙親相應地,另外乙個結點稱為孩子 child 的雙親 parent 兄弟具有同乙個雙親 parent 的孩子 child 之間互稱為兄弟 sibling 祖先結點的祖先 ancesto...