发贴记录一下自己数据结构练习的代码~
代码实现功能:输出根节点到叶节点的最长的路径(输出节点值与路径长度)
关键代码:
void PrintLongestRoad(TreeNode *tree, int path[], int &deepth,int longestpath[]) {
if (tree != NULL) {
if (tree->lchild == NULL && tree->rchild == NULL) {
path[deepth] = tree->value;
if (deepth > longestpath[0]) {
longestpath[0] = deepth;
for (int i = 1; i <= deepth; i++) {
longestpath[i] = path[i];
}
}
}
else {
path[deepth++] = tree->value;
PrintLongestRoad(tree->lchild, path, deepth, longestpath);
PrintLongestRoad(tree->rchild, path, deepth, longestpath);
deepth--;
}
}
}``
数据测试:
int main(){
BinaryTree *tree = creatBinaryTree();
int num = 1;
int a[20];
int b[20];
insertNode(tree, 1);
insertNode(tree, 32);
insertNode(tree, 0);
insertNode(tree, 3);
insertNode(tree, 20);
insertNode(tree, 40);
insertNode(tree, 2);
insertNode(tree, 10);
insertNode(tree, 25);
insertNode(tree, 35);
insertNode(tree, 23);
PrintLongestRoad(tree->root, a, num, b);
for (int i = 1; i <= b[0]; i++) {
cout << b[i] << "\t";
}
}
运行结果:
|