91超碰碰碰碰久久久久久综合_超碰av人澡人澡人澡人澡人掠_国产黄大片在线观看画质优化_txt小说免费全本

溫馨提示×

溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊×
其他方式登錄
點擊 登錄注冊 即表示同意《億速云用戶服務條款》

C/C++中怎么實現樹操作

發布時間:2021-07-27 16:36:57 來源:億速云 閱讀:172 作者:Leah 欄目:編程語言

這期內容當中小編將會給大家帶來有關C/C++中怎么實現樹操作,文章內容豐富且以專業的角度為大家分析和敘述,閱讀完這篇文章希望大家可以有所收獲。

預處理命令

#include <stdio.h>#include <stdlib.h>#define TRUE 1#define FALSE 0typedef int elemtype;typedef struct tNode* tree;typedef struct tNode { elemtype elem; tree left; tree right;}tNode;

計算樹的節點個數

//明確函數的功能:返回傳入樹的節點個數//定好尾頭:尾:當傳入的節點尾NULL時 頭:1 + count(t->left) + count(t->right)int count(tree t){ if (t == NULL) return 0; return 1 + count(t->left) + count(t->right);}

求樹中節點數據為num的節點個數

//明確函數功能:返回節點數據為num的節點個數//定好尾頭:尾:NULL 頭:1 + func(左) + func(右) // 或者 func(左) + func(右)int count_num(tree t, elemtype num){ if (t == NULL) return 0; else { if (t->elem == num) return 1 + count_num(t->left, num) + count_num(t->right, num); else return count_num(t->left, num) + count_num(t->right, num); }}

求樹中節點數據的總和

//明確函數功能:返回總和//定好尾頭:尾:NULL 頭:root-> elem + func(左) + func(右)int add(tree t){ if (t == NULL) return 0; else return t->elem + add(t->left) + add(t->right);}

判斷樹中有無數據為num的節點

//兩種方式:一種是可以達成目的就結束,一種是需要遍歷完全才結束//明確函數功能:判斷其中有沒有值為num的節點返回1或0//定好尾頭:尾:值為num ,頭:int inTree_1(tree t, elemtype num){ if (t->elem == num) return TRUE; else { if (t->left != NULL) intree(t->left, num); // 使用遞歸將其遞到子節點 if (t->right != NULL) intree(t->right, num); } return FALSE;}//確定函數功能:根據num的有無,返回0/非0//定好尾頭:尾:NULL 頭:有:return 1 + func(左)+func(右) 無:func(左)+func(右)int inTree_2(tree t, elemtype num){ if (t == NULL) return 0; int res; if (t->elem == num) res = 1+ intree(t->left, num) + intree(t->right, num);  if (t->elem == num) res = intree(t->left, num) + intree(t->right, num); return res;}

計算值為num的個數

int count_elem(tree t, elemtype val, int* num){ int val_l, val_r; if (t->left == NULL) return t->elem; if (t->right == NULL) return t->elem; else { val_l = count_elem(t->left, val, num); if (val == val_l) (*num)++; val_r = count_elem(t->right, val, num); if (val == val_r) (*num)++; return t->elem; } return *num;}

打印trunk

//明確函數功能:打印trunk//定好尾頭 尾:NULL 頭:第一步是判斷本節點是否是樹干然后打印,再func(左)去打印左邊的樹干 func(右)去打印右邊的樹干void print_trunk(tree t){ if (t == NULL) return; if (t->right != NULL || t->left != NULL) printf("%d", t->elem); print_trunk(t->right); print_trunk(t->left);}

判斷兩棵樹是否一樣

int same(tree t1, tree t2){ if (count(t1) == count(t2)) { if (t1->elem != t2->elem) return FALSE; if (t1->left != NULL && t2->left != NULL) same(t1->left, t2->left); if (t1->right != NULL && t2->right != NULL) same(t1->right, t2->right); return TRUE; } else return FALSE;}

求樹的高度

#define max(x, y) (x > y) ? x : yint height(tree t){ if (t == NULL)return -1; return 1 + max(height(t->right), height(t->left));}

打印樹中某值的層數

//明確函數功能:尋找放入的數的層數并打印//確定尾://找到特定值的節點 找到NULL 頭:若是則打印,若不是則去左右子樹尋找layer++,當孩子尋找完都沒有時layer--bool flag = false; //flag標記可以用于提前結束遞歸void getTreeLayer(Node * root, int num, int &layer){ if (root == NULL) return; if (flag == true) return; if (root->data == num) {  cout << "num值" << num << "的層數為:" << layer << endl;  flag = true;  return;  } layer++; getTreeLayer(root->lChild, num); getTreeLayer(root->rChild, num); layer--;}

求節點的路徑

vector<int> path;bool flag = false; //flag標記可以用于提前結束遞歸void getTreeLayer(Node * root, int num, int &layer){ if (root == NULL) return; if (flag == true) return; if (root->data == num) {  for(int x : path) cout << x << " "; bool flag = true; return; } path.push_back(); getTreeLayer(root->lChild, num); getTreeLayer(root->rChild, num); path.pop_back();}

上述就是小編為大家分享的C/C++中怎么實現樹操作了,如果剛好有類似的疑惑,不妨參照上述分析進行理解。如果想知道更多相關知識,歡迎關注億速云行業資訊頻道。

向AI問一下細節

免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。

AI

武陟县| 成安县| 偃师市| 道孚县| 宜黄县| 九台市| 青神县| 晋江市| 红桥区| 汝城县| 乾安县| 雅江县| 榆树市| 灵宝市| 武山县| 温州市| 平武县| 微博| 凌云县| 廊坊市| 仁寿县| 城固县| 定南县| 蕉岭县| 北川| 阿鲁科尔沁旗| 信阳市| 巨野县| 霍林郭勒市| 浠水县| 唐河县| 龙游县| 陵水| 文昌市| 乌海市| 墨脱县| 晋城| 堆龙德庆县| 云梦县| 红河县| 东阳市|