二叉樹的程式設計

2021-10-01 04:41:14 字數 2371 閱讀 1003

#define _crt_secure_no_warnings

#include#include#includestruct binarynode;

//統計葉子的數量

void calculateleafnum(struct binarynode *root,int *num)

if (root->lchild==null&&root->rchild==null)

calculateleafnum(root->lchild,num);

calculateleafnum(root->rchild,num);

}int gettreeheight(struct binarynode *root)

//求出左子樹的高度

int lheight = gettreeheight(root->lchild);

int rheight = gettreeheight(root->rchild);

int height = lheight > rheight ? lheight + 1 : rheight + 1;

return height;

}//樹的拷貝

struct binarynode * copybinarytree(struct binarynode * root)

//先拷貝左子樹

struct binarynode *lchild = copybinarytree(root->lchild);

//再拷貝右子樹

struct binarynode *rchild = copybinarytree(root->rchild);

//建立新節點

struct binarynode *newnode = malloc(sizeof(struct binarynode));

newnode->lchild = lchild;

newnode->rchild = rchild;

newnode->ch = root->ch;

return newnode;

}//遍歷樹

void showbinarytree(struct binarynode *root)

printf("%c ",root->ch);

showbinarytree(root->lchild);

showbinarytree(root->rchild);

}//釋放樹

void freetree(struct binarynode * root)

//先釋放左子樹

freetree(root->lchild);

//再釋放右子樹

freetree(root->rchild);

printf("%c 被釋放了\n",root->ch);

//釋放根節點

free(root);

}void test02();

struct binarynode nodeb = ;

struct binarynode nodec = ;

struct binarynode noded = ;

struct binarynode nodee = ;

struct binarynode nodef = ;

struct binarynode nodeg = ;

struct binarynode nodeh = ;

//建立結點之間的關係

nodea.lchild = &nodeb;

nodea.rchild = &nodef;

nodeb.rchild = &nodec;

nodec.lchild = &noded;

nodec.rchild = &nodee;

nodef.rchild = &nodeg;

nodeg.lchild = &nodeh;

//1. 求樹中的葉子節點的數量

int num = 0;

calculateleafnum(&nodea,&num);

printf("葉子的數量為%d\n",num);

//2.求樹的高度/深度

int height = gettreeheight(&nodea);

printf("樹的高度為:%d\n",height);

//3.拷貝二叉樹

struct binarynode *newtree = copybinarytree(&nodea);

printf("拷貝之後的二叉樹為 ");

showbinarytree(newtree);

printf("\n");

//4.釋放二叉樹

freetree(newtree); }

int main()

二叉樹 二叉樹

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

樹 二叉樹 滿二叉樹 完全二叉樹 完滿二叉樹

目錄名稱作用根 樹的頂端結點 孩子當遠離根 root 的時候,直接連線到另外乙個結點的結點被稱之為孩子 child 雙親相應地,另外乙個結點稱為孩子 child 的雙親 parent 兄弟具有同乙個雙親 parent 的孩子 child 之間互稱為兄弟 sibling 祖先結點的祖先 ancesto...

二叉樹 48 二叉樹 二叉樹的高度

目的 使用c 模板設計並逐步完善二叉樹的抽象資料型別 adt 內容 1 請參照鍊錶的adt模板,設計二叉樹並逐步完善的抽象資料型別。由於該環境目前僅支援單檔案的編譯,故將所有內容都集中在乙個原始檔內。在實際的設計中,推薦將抽象類及對應的派生類分別放在單獨的標頭檔案中。參考教材 課件,以及網盤中的鍊錶...