⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 prg11_1.cpp

📁 Data Structures with C++附代码
💻 CPP
字号:
#include <iostream.h>
#pragma hdrstop

// include TreeNode class and library of treenode functions
#include "treenode.h"
#include "treelib.h"

void main(void)
{
    TreeNode<char> *root;

    // use the character Tree_2 
    MakeCharTree(root, 2);
    
    // variable that is updated by CountLeaf
    int leafCount = 0;

    // make call to CountLeaf function. get total leafcount   
    CountLeaf(root, leafCount);
    cout << "Number of leaf nodes is " << leafCount << endl;
    
    // make call to Depth function and print depth of tree
    cout << "The depth of the tree is "
         << Depth(root) << endl;
}

/*
<Run of Program 11.1>

Number of leaf nodes is 4
The depth of the tree is 3

*/

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -