首页 > 其他 > 详细

题目23 从上往下打印二叉树

时间:2019-07-28 15:29:47      阅读:56      评论:0      收藏:0      [点我收藏+]

/////////////////////////////////////////////////////////////////////////////////////
// 5. 题目23 从上往下打印二叉树

void PrintTreeFromTopToBottom(BinarySeachTreeNode<int>* pRoot)
{
    if (NULL == pRoot)
    {
        return;
    }

    queue<BinarySeachTreeNode<int>*> stQueue;
    stQueue.push(pRoot);

    while (!stQueue.empty())
    {
        BinarySeachTreeNode<int>* pTmpNode = stQueue.front();
        stQueue.pop();

        // 打印数据
        printf("%2d -> ", pTmpNode->m_stValue);

        if (pTmpNode->m_pLeftNode)
        {
            stQueue.push(pTmpNode->m_pLeftNode);
        }

        if (pTmpNode->m_pRightNode)
        {
            stQueue.push(pTmpNode->m_pRightNode);
        }
    }

    putchar(10);

}

void PrintTreeFromTopToBottomTestFunc()
{
    cout << "\n\n --------------- PrintTreeFromTopToBottomTestFunc Start -------------->" << endl;
    int aiArray[] = {8, 6, 10, 5, 7, 9, 11, 12};
    int iLen = sizeof(aiArray) / sizeof(int);
    TRAVERSAL_ARRAY(aiArray, iLen);

    // 1.建立一个二叉树
    CBinarySearchTree<int>* pTree = new CBinarySearchTree<int>();
    if (NULL == pTree)
    {
        return;
    }

    for (int i = 0; i < iLen; i++)
    {
        pTree->Insert(aiArray[i]);
    }

    pTree->Traversal();
    pTree->Traversal(TRAVERSAL_TYPE_RECUR_PRE_ORDER);

    // 2.二叉树层次遍历(广度优先遍历)
    const BinarySeachTreeNode<int>* pRoot = pTree->GetTreeRootNode();

    cout << "非递归 层次遍历: ";
    PrintTreeFromTopToBottom(const_cast<BinarySeachTreeNode<int>*>(pRoot));

    // 3.释放内存
    SAVE_DELETE(pTree);

    cout << "\n\n --------------- PrintTreeFromTopToBottomTestFunc Start -------------->" << endl;

}

题目23 从上往下打印二叉树

原文:https://www.cnblogs.com/yzdai/p/11258728.html

(0)
(0)
   
举报
评论 一句话评论(0
关于我们 - 联系我们 - 留言反馈 - 联系我们:wmxa8@hotmail.com
© 2014 bubuko.com 版权所有
打开技术之扣,分享程序人生!