数据结构C++版 王红梅 OJ习题

1022: 二叉链表(3)

Description

/*分别利用栈和队列实现二叉树的先序非递归算法和层次遍历算法。

已知部分代码如下:(勿改动),请在此基础上补充实现两个遍历算法
*/
#include<iostream>
#include<string>
using namespace std;

//循环队列类
const int QueueSize=50;  //定义存储队列元素的数组的最大长度

template <class DataType>        //定义模板类CirQueue
class Queue
{
public:
    Queue( );        //构造函数,置空队
    ~Queue( );               //析构函数
    void EnQueue(DataType x);           //将元素x入队
    DataType DeQueue( );                //将队头元素出队
    DataType GetQueue( );               //取队头元素(并不删除)
    bool Full();                   //judge full
    bool Empty( );               //判断队列是否为空
private:
    DataType data[QueueSize];           //存放队列元素的数组
    int front;  //队头指针,指向队头元素的前一个位置
    int rear;    //队尾指针,指向队尾元素的位置
};
/*
 * 前置条件:队列不存在
 * 输    入:无
 * 功    能:初始化队列
 * 输    出:无
 * 后置条件:创建一个空队列
 */

template <typename DataType>
Queue<DataType>::Queue( )
{
 front=rear=QueueSize-1;
}

/*
 * 前置条件:队列已存在
 * 输    入:无
 * 功    能:销毁队列
 * 输    出:无
 * 后置条件:释放队列所占用的存储空间
 */

template <typename DataType>
Queue<DataType>::~Queue( )
{

}

/*
 * 前置条件:队列已存在
 * 输    入:元素值x
 * 功    能:在队尾插入一个元素
 * 输    出:如果插入不成功,抛出异常
 * 后置条件:如果插入成功,队尾增加了一个元素
 */

template <typename DataType>
void Queue<DataType>::EnQueue(DataType x)
{
    if (Full()) throw "上溢";
    rear=(rear+1) % QueueSize;   //队尾指针在循环意义下加1
    data[rear]=x;                //在队尾处插入元素
}

/*
 * 前置条件:队列已存在
 * 输    入:无
 * 功    能:删除队头元素
 * 输    出:如果删除成功,返回被删元素值,否则,抛出删除异常
 * 后置条件:如果删除成功,队头减少了一个元素
 */

template <typename DataType>
DataType Queue<DataType>::DeQueue( )
{
    if (Empty()) throw "下溢";
    front=(front+1) % QueueSize;    //队头指针在循环意义下加1
    return data[front];             //读取并返回出队前的队头元素,注意队头指针
}
                                   //指向队头元素的前一个位置
/*
 * 前置条件:队列已存在
 * 输    入:无
 * 功    能:读取队头元素
 * 输    出:若队列不空,返回队头元素
 * 后置条件:队列不变
 */

template <typename DataType>
DataType Queue<DataType>::GetQueue( )
{
    int i;
    if (Empty()) throw "下溢";
    i=(front+1) % QueueSize;  //注意不要给队头指针赋值
    return data[i];
}

/*
 * 前置条件:队列已存在
 * 输    入:无
 * 功    能:判断队列是否为空
 * 输    出:如果队列为空,返回true,否则,返回false
 * 后置条件:队列不变
 */

template <typename DataType>
bool Queue<DataType>::Empty( )
{
    return front==rear;
}

template <typename DataType>
bool Queue<DataType>::Full( )
{
    return (rear+1)%QueueSize==front;
}
//栈类
const int StackSize=50;
template <typename DataType>
class Stack{
public:
    Stack();  //initialize an empty stack
    void Push(DataType x);
    DataType Pop();
    bool Full(); //return true if full
    bool Empty();  //return true if empty
private:
    DataType data[StackSize];
    int top; //subscript of array
};

//initialize an  empty stack
template <typename DataType>
Stack<DataType>::Stack()
{
    top=-1;
}

//push x
template <typename DataType>
void Stack<DataType>::Push(DataType x)
{
    if(Full())throw"Overflow";
    data[++top]=x;
}

//pop the top element of stack
template <typename DataType>
DataType Stack<DataType>::Pop()
{
    if(Empty())throw "Empty";
    DataType x;
    x=data[top--];
    return x;
}

//judge empty
template <typename DataType>
bool Stack<DataType>::Full()
{
    return top==StackSize-1;
}

//judge empty
template <typename DataType>
bool Stack<DataType>::Empty()
{
    return top==-1;
  /*  if(top==-1)return true;
    else return false;*/
}


//二叉树类,实现二叉树的非递归算法:先序遍历、层次遍历
template <typename DataType>
struct BiNode   //二叉树的结点结构
{
 DataType data;
 BiNode<DataType> *lchild, *rchild;
};

template <typename DataType>
class BiTree{
public:
 BiTree(); //构造函数,初始化一棵二叉树,其前序序列由键盘输入
    ~BiTree();         //析构函数,释放二叉链表中各结点的存储空间

    void PreOrder(void);      //先序非递归

 void LevelOrder(void);   //层次遍历

private:
    BiNode<DataType> *root;         //指向根结点的头指针
 void Creat(BiNode<DataType> *&bt);//被构造函数调用,递归方式生成二叉树
    void Release(BiNode<DataType> *&bt);     //被析构函数调用
};

//定义类中的成员函数

//构造函数:Creat利用创建二叉树
template<typename DataType>
BiTree<DataType>::BiTree()
{
    Creat(root);
}

//功    能:递归方法创建一棵二叉树,由构造函数调用
template <typename DataType>
void BiTree<DataType>::Creat(BiNode<DataType> * &bt)
{
 DataType ch;
 cin>>ch;
    if (ch=="#") bt = nullptr;  //创建结点值为字符串的二叉树
    else{
  bt = new BiNode<DataType>;   //生成一个结点
  bt->data=ch;
  Creat(bt->lchild);    //递归建立左子树
  Creat(bt->rchild);    //递归建立右子树
    }
}
//功    能:析构函数,释放二叉链表中各结点的存储空间
template<typename DataType>
BiTree<DataType>::~BiTree() //析构函数不能带参数
{
 Release(root);
}

//功    能:释放二叉树的存储空间,析构函数调用
template<typename DataType>
void BiTree<DataType>::Release(BiNode<DataType>*&bt)
{
 if (bt != nullptr){
  Release(bt->lchild);   //释放左子树
  Release(bt->rchild);   //释放右子树
  delete bt;
 }
}

//请在下面补充实现先序、层次遍历算法


int main()
{
    BiTree<string> bt;
    bt.PreOrder();
    cout<<endl;
    bt.LevelOrder();
    cout<<endl;
    return 0;
}

Input

Output

Sample Input

Li Sun # Zhao Zhou # # Wang # # Qian # #

Sample Output

Li Sun Zhao Zhou Wang Qian 
Li Sun Qian Zhao Zhou Wang 
//
// Created by Legends丶Hu on 2020/2/5.
//

#include<iostream>
#include<string>

using namespace std;

const int StackSize = 100;

template<class T>
class Stack {
private:
    int top;
    T data[StackSize];
public:
    Stack();

    void Push(T x);

    T Pop();

    T GetTop();

    int Empty();

    ~Stack() {}
};

template<class T>
void Stack<T>::Push(T x) {
    if (top == StackSize - 1) throw "Overflow";
    data[++top] = x;
}

template<class T>
Stack<T>::Stack() {
    top = -1;
}

template<class T>
T Stack<T>::Pop() {
    if (Empty()) throw "Downflow";
    return data[top--];
}

template<class T>
T Stack<T>::GetTop() {
    return Empty() ? throw "Downflow" : data[top];
}

template<class T>
int Stack<T>::Empty() {
    return top == -1;
}

const int QueueSize = 100;

template<class T>        //定义模板类Queue
class Queue {
public:
    Queue();                 //构造函数,置空队
    ~ Queue();               //析构函数
    void EnQueue(T x);           //将元素x入队
    T DeQueue();                //将队头元素出队
    T GetQueue();               //取队头元素(并不删除)
    bool Empty();               //判断队列是否为空,空返回true,否则返回false
    bool Full();                 //判断队列是否为满,满返回true,否则返回false
private:
    T data[QueueSize];           //存放队列元素的数组
    int front, rear;    //队头和队尾指针,分别指向队头元素所在数组的前一下标和队尾元素的数组下标
};

template<class T>
Queue<T>::Queue() {
    front = rear = QueueSize - 1;
}

template<class T>
Queue<T>::~Queue() {
}

template<class T>
bool Queue<T>::Empty() {
    return front == rear;
}

template<class T>
bool Queue<T>::Full() {
    return (rear + 1) % QueueSize == front;
}

template<class T>
void Queue<T>::EnQueue(T x) {
    if(Full()) throw "Overflow";
    rear = (rear + 1) % QueueSize;
    data[rear] = x;
}

template<class T>
T Queue<T>::DeQueue() {
    if(Empty()) throw "Downflow";
    front = (front + 1) % QueueSize;
    return data[front];
}

template<class T>
T Queue<T>::GetQueue() {
    if(Empty()) throw "Downflow";
    return data[front];
}

template<class T>
struct BiNode   //二叉树的结点结构
{
    T data;
    BiNode<T> *lchild, *rchild;
};
template<class T>
struct Element { //后序遍历所需
    BiNode<T> *ptr;
    bool flag;
};

//实现二叉树的非递归遍历
template<class T>
class BiTree {
public:
    BiTree(); //构造函数,初始化一棵二叉树,其前序序列由键盘输入
    ~BiTree();         //析构函数,释放二叉链表中各结点的存储空间
    void PreOrder();     //前序遍历二叉树
    void LevelOrder();   //层次遍历二叉树
    void InOrder();      //中序遍历二叉树
    void PostOrder();    //后序遍历二叉树
private:
    BiNode<T> *root;         //指向根结点的头指针
    void Creat(BiNode<T> *&root);//被有参构造函数调用,以便生成一颗二叉树
    void Release(BiNode<T> *&root);   //被析构函数调用
};

template<class T>
void BiTree<T>::PostOrder() {
    BiNode<T> *p = root;
    Stack<Element<T> > s;
    while (p || !s.Empty()) {
        while (p) {
            Element<T> element;
            element.ptr = p;
            element.flag = true;
            s.Push(element);
            p = p->lchild;
        }
        if (!s.Empty()) {
            Element<T> element = s.Pop();
            if(element.flag == true){
                element.flag = false;
                s.Push(element);
                p = element.ptr->rchild;
            }
            else{
                cout << element.ptr->data << " ";
                p = NULL;
            }
        }
    }
}

template<class T>
void BiTree<T>::InOrder() {
    Stack<BiNode<T> *> s;
    BiNode<T> *p = root;
    while (p || !s.Empty()) {
        while (p) {
            s.Push(p);
            p = p->lchild;
        }
        if (!s.Empty()) {
            p = s.Pop();
            cout << p->data << " ";
            p = p->rchild;
        }
    }
}

template<class T>
void BiTree<T>::LevelOrder() {
    Queue<BiNode<T> *> queue;
    queue.EnQueue(root);
    while (!queue.Empty()) {
        BiNode<T> *p = queue.DeQueue();
        cout << p->data << " ";
        if (p->lchild) queue.EnQueue(p->lchild);
        if (p->rchild) queue.EnQueue(p->rchild);
    }
}

template<class T>
void BiTree<T>::PreOrder() {
    Stack<BiNode<T> *> s;
    BiNode<T> *p = root;
    while (p || !s.Empty()) {
        while (p) {
            cout << p->data << " ";
            s.Push(p);
            p = p->lchild;
        }
        if (!s.Empty()) {
            p = s.Pop();
            p = p->rchild;
        }
    }
}

//定义类中的成员函数
//构造函数:Creat利用创建二叉树
template<class T>
BiTree<T>::BiTree() {
    Creat(root);
}

//功    能:递归方法创建一棵二叉树,由构造函数调用
template<class T>
void BiTree<T>::Creat(BiNode<T> *&root) {
    T ch;
    cin >> ch;
    if (ch == "#") root = NULL;  //创建结点值为字符串的二叉树
    else {
        root = new BiNode<T>;   //生成一个结点
        root->data = ch;
        Creat(root->lchild);    //递归建立左子树
        Creat(root->rchild);    //递归建立右子树
    }
}

//功    能:析构函数,释放二叉链表中各结点的存储空间
template<class T>
BiTree<T>::~BiTree() //析构函数不能带参数
{
    Release(root);
}

//功    能:释放二叉树的存储空间,析构函数调用
template<class T>
void BiTree<T>::Release(BiNode<T> *&root) {
    if (root != NULL) {
        Release(root->lchild);   //释放左子树
        Release(root->rchild);   //释放右子树
        delete root;
    }
}
//Li Sun # Zhao Zhou # # Wang # # Qian # #
int main() {
    BiTree<string> bt;
    bt.PreOrder();
    cout << endl;
//    bt.InOrder();
//    cout << endl;
//    bt.PostOrder();
//    cout << endl;
    bt.LevelOrder();
    cout << endl;
    return 0;
}

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值