首页 > 代码库 > 编程算法 - 数组构造二叉树并打印
编程算法 - 数组构造二叉树并打印
数组构造二叉树并打印
本文地址: http://blog.csdn.net/caroline_wendy
数组:
构造二叉树, 需要使用两个队列(queue), 保存子节点和父节点, 并进行交换;
打印二叉树, 需要使用两个队列(queue), 依次打印父节点和子节点, 并进行交换;
二叉树的数据结构:
struct BinaryTreeNode { int m_nValue; BinaryTreeNode* m_pParent; BinaryTreeNode* m_pLeft; BinaryTreeNode* m_pRight; };
代码:
/* * main.cpp * * Created on: 2014.6.12 * Author: Spike */ /*eclipse cdt, gcc 4.8.1*/ #include <iostream> #include <stack> #include <queue> using namespace std; struct BinaryTreeNode { int m_nValue; BinaryTreeNode* m_pParent; BinaryTreeNode* m_pLeft; BinaryTreeNode* m_pRight; }; void printTree (BinaryTreeNode* tree) { BinaryTreeNode* node = tree; std::queue<BinaryTreeNode*> temp1; std::queue<BinaryTreeNode*> temp2; temp1.push(node); while (!temp1.empty()) { node = temp1.front(); if (node->m_pLeft != NULL) { temp2.push(node->m_pLeft); } if (node->m_pRight != NULL) { temp2.push(node->m_pRight); } temp1.pop(); std::cout << node->m_nValue << " "; if (temp1.empty()) { std::cout << std::endl; temp1 = temp2; std::queue<BinaryTreeNode*> empty; std::swap(temp2, empty); } } } BinaryTreeNode* buildTree (const std::vector<int>& L) { if (L.empty()) return nullptr; std::queue<BinaryTreeNode*> parentQueue; std::queue<BinaryTreeNode*> childQueue; BinaryTreeNode* root = new BinaryTreeNode(); root->m_nValue = http://www.mamicode.com/L[0];>输出:
49 38 65 97 76 13 27 49
声明:以上内容来自用户投稿及互联网公开渠道收集整理发布,本网站不拥有所有权,未作人工编辑处理,也不承担相关法律责任,若内容有误或涉及侵权可进行投诉: 投诉/举报 工作人员会在5个工作日内联系你,一经查实,本站将立刻删除涉嫌侵权内容。