二叉树的遍历

二叉树的前中后序遍历

// 二叉树的遍历.cpp : 此文件包含 "main" 函数。程序执行将在此处开始并结束。
//

#include <iostream>
#include <vector>
using namespace std;
template <typename T>
class BinaryTree {
    vector<T> tree;
public:
    BinaryTree(initializer_list<T> a) :tree(a){}
    void preorder(size_t index = 0);
    void inorder(size_t index = 0);
    void postorder(size_t index = 0);
};
int main()
{
    BinaryTree<char> bt{ 'A','B','C','D',0,'E','F','G','H',0,0,0,'I' };
    bt.preorder(); cout << endl;
    bt.inorder(); cout << endl;
    bt.postorder(); cout << endl;
}


template<typename T>
void BinaryTree<T>::preorder(size_t index)
{
    if (index >= tree.size() || tree[index] == 0)return;
    int left = index * 2 + 1, right = index * 2 + 2;
    cout << tree[index] << ' ';
    preorder(left);
    preorder(right);
}

template<typename T>
void BinaryTree<T>::inorder(size_t index)
{
    if (index >= tree.size() || tree[index] == 0)return;
    int left = index * 2 + 1, right = index * 2 + 2;
    inorder(left);
    cout << tree[index] << ' ';
    inorder(right);
}

template<typename T>
void BinaryTree<T>::postorder(size_t index)
{
    if (index >= tree.size() || tree[index] == 0)return;
    int left = index * 2 + 1, right = index * 2 + 2;
    postorder(left);
    postorder(right);
    cout << tree[index] << ' ';
}

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值