樹狀結構在程式中的建立與應用大多使用鏈結串列來處理, 因為鏈結串列的指標可以用來處理樹的子節點而且相當方便, 當變更子節點時只需改變指標即可. 此外當然也可以使用陣列這樣的連續記憶體來表示二元樹. 至於使用陣列或鏈結串列都各有利弊, 首先下面我們會使用陣列來建立與實作一個二元樹.
二元樹的陣列表示法 :
如果要使用一維陣列來儲存二元樹, 首先將二元樹想像成一個完滿二元樹, 而且第 K 階具有 2^(k-1) 個節點, 並且依序存放在此一維陣列. 首先先來看看使用一維陣列建立二元樹的表式方式即索引值的配置 :
另外在建立二元樹的實例時必須遵守 “小於父節點的值放在左子節點, 大於父節點的值則放在右子節點” 的規則, 則我們可以保證左子樹的值一定完全小於樹根, 而右子樹的值一定大於樹根. 實現請參考下面範例代碼.
範例代碼 :
範例程式分別使用陣列與鏈結串列來將原始陣列的值依序放入二元樹 :
* BTreeInLS.h 代碼 :
- #include
- using namespace std;
- class BTreeInLSNode {
- public:
- int data; // 節點資料
- class BTreeInLSNode *left, *right; // 節點左指標及右指標
- BTreeInLSNode(){
- data = -1;
- left = NULL;
- right = NULL;
- }
- };
- typedef class BTreeInLSNode btmNode;
- typedef btmNode *btmNodePoint;
- class BTreeInLS{
- btmNodePoint rootNode;
- int level;
- public:
- BTreeInLS(){
- rootNode = NULL;
- level = 0;
- }
- virtual void addNode(int v);
- virtual void showData();
- virtual int getLevel();
- protected:
- virtual void _showNode(int level, int curLeve, btmNodePoint np);
- };
- #include "BTreeInLS.h"
- void BTreeInLS::addNode(int v) {
- /*Add node*/
- if(rootNode == NULL) {
- rootNode = new BTreeInLSNode;
- rootNode->data = v;
- rootNode->left = NULL;
- rootNode->right = NULL;
- level = 1;
- } else {
- btmNodePoint tmpPoint = rootNode;
- btmNodePoint prevPoint;
- int tmpLevel = 1;
- int direction = -1; //0 is left, 1 is right
- while(true) {
- if(tmpPoint == NULL) {
- tmpPoint = new BTreeInLSNode;
- tmpPoint->data = v;
- tmpPoint->left = NULL;
- tmpPoint->right = NULL;
- if(tmpLevel>level)
- level = tmpLevel; //紀錄目前最高Level
- if(direction==0) {
- prevPoint->left = tmpPoint;
- } else {
- prevPoint->right = tmpPoint;
- }
- break;
- } else if(tmpPoint->data < v) { // 往右子樹移動
- prevPoint = tmpPoint;
- tmpPoint = tmpPoint->right;
- tmpLevel++;
- direction = 1;
- } else { // 往左子樹移動
- prevPoint = tmpPoint;
- tmpPoint = tmpPoint->left;
- tmpLevel++;
- direction = 0;
- }
- }
- }
- }
- void BTreeInLS::showData(){
- for(int i=1; i<=level; i++) {
- this->_showNode(i, 1, rootNode);
- cout << endl;
- }
- }
- void BTreeInLS::_showNode(int level, int curLevel, btmNodePoint np) {
- if(level == curLevel) {
- if(np!=NULL) {
- cout << "[" << np->data << "] ";
- } else {
- cout << "[0] " ;
- }
- } else if(level> curLevel && np!= NULL) {
- this->_showNode(level, curLevel+1, np->left);
- this->_showNode(level, curLevel+1, np->right);
- }
- }
- int BTreeInLS::getLevel(){
- return level;
- }
- void ch06_01(bool b) {
- if(b) {
- int data[] = {0,6,3,5,9,7,8,4,2}; // 原始陣列
- int bdata[16] = {0}; //存放二元樹陣列
- BTreeInLS bTree;
- cout << "原始陣列內容:" << endl;
- for(int i=1; i<9; i++)
- cout << "[" << data[i] << "] ";
- cout << endl;
- // 把原始陣列放進二元樹陣列
- for(int i=1; i<9; i++) {
- bTree.addNode(data[i]);
- int level = 1;
- for(;bdata[level]>0;) {
- if(data[i] > bdata[level]) //如果陣列的值大於樹根, 往右子樹比較
- level = level*2 + 1;
- else // 如果陣列的值小於等於樹根, 往左子樹比較
- level = level*2;
- }
- bdata[level] = data[i];
- }
- cout << "二元樹內容(陣列) :" << endl;
- for(int i=1; i<16; i++)
- cout << "[" << bdata[i] << "] " ;
- cout << endl;
- cout << "二元樹內容(鏈結串列):" << endl;
- bTree.showData();
- }
- }
執行結果 :
補充說明 :
* [ 資料結構 小學堂 ] 樹狀結構導論 : 樹
* [ 資料結構 小學堂 ] 樹狀結構導論 : 二元樹的儲存方式 - Java version
沒有留言:
張貼留言