初学编程C++之树(二叉树——链表)

代码示例:

#ifndef NODE_H
#define NODE_H
class Node
{
public:
	Node();
	Node*SearchNode(int nodeIndex);
    void DeleteNode();
	void PreorderTraversal();
	void InorderTraversal();
	void PostorderTraversal();
	int index;
	int data;
	Node*pLChild;
	Node*pRChild;
	Node*pParent;
};
#endif

#include"Node.h"
#include<iostream>
using namespace std;

Node::Node()
{
	index=0;
	data=0;
	pLChild= NULL;
	pRChild= NULL;
	pParent= NULL;
}
Node*Node::SearchNode(int nodeIndex)
{
	if(this->index==nodeIndex)
	{
		return this;
	}
	Node*temp=NULL;
	if(this->pLChild!=NULL)
	{
		if(this->pLChild->index==nodeIndex)
		{
			return this->pLChild;
		}
		else
		{
			temp=this->pLChild->SearchNode(nodeIndex);
			if(temp!=NULL)
			{
				return temp;
			}
		}
	}
	if(this->pRChild!=NULL)
	{
		if(this->pRChild->index==nodeIndex)
		{
			return this->pRChild;
		}
		else
		{
			temp=this->pRChild->SearchNode(nodeIndex);
			if(temp!=NULL)
			{
				return temp;
			}
		}
	}
	return NULL;
}
void Node::DeleteNode()
{
	if(this->pLChild!=NULL)
	{
		this->pLChild->DeleteNode();
	}
	if(this->pRChild!=NULL)
	{
		this->pRChild->DeleteNode();
	}
	if(this->pParent!=NULL)
	{
		if(this->pParent->pLChild==this)
		{
			this->pParent->pLChild=NULL;
		}
		if(this->pParent->pRChild==this)
		{
			this->pParent->pRChild=NULL;
		}
	}
	delete this;
}
void Node::PreorderTraversal()
{
	cout<< this->index <<"---"<< this->data <<endl;
	if(this->pLChild!=NULL)
	{
		this->pLChild->PreorderTraversal();
	}
	if(this->pRChild!=NULL)
	{
		this->pRChild->PreorderTraversal();
	}
}
void Node::InorderTraversal()
{
	if(this->pLChild!=NULL)
	{
		this->pLChild->InorderTraversal();
	}
	cout<< this->index <<"---"<< this->data <<endl;
	if(this->pRChild!=NULL)
	{
		this->pRChild->InorderTraversal();
	}
}
void Node::PostorderTraversal()
{
	if(this->pLChild!=NULL)
	{
		this->pLChild->PostorderTraversal();
	}
	if(this->pRChild!=NULL)
	{
		this->pRChild->PostorderTraversal();
	}
	cout<< this->index <<"----"<< this->data <<endl;
}

#ifndef TREE_H
#define TREE_H
#include"Node.h"
#include<stdlib.h>
class Tree
{
public:
	Tree();//创建树
   ~Tree();//销毁树
   Node*SearchNode(int nodeIndex);//搜索结点
   bool AddNode(int nodeIndex,int direction,Node*pNode);//添加结点
   bool DeleteNode(int nodeIndex,Node*pNode);//删除结点
   void PreorderTraversal();//前序遍历(根左右)
   void InorderTraversal();//中序遍历(左根右)
   void PostorderTraversal();//后续遍历(左右根)
private:
	Node*m_pRoot;
};
#endif

#include"Tree.h"
#include<iostream>
using namespace std;
Tree::Tree()
{
	m_pRoot=new Node();
}
Tree::~Tree()
{
    DeleteNode(0,NULL);
	//m_pRoot->DeleteNode();
}
Node*Tree::SearchNode(int nodeIndex)
{
	return m_pRoot->SearchNode(nodeIndex);
}
bool Tree::AddNode(int nodeIndex,int direction,Node*pNode)
{
	Node*temp=SearchNode(nodeIndex);
	if(temp==NULL)
	{
		return false;
	}
	Node*node=new Node();
	if(node==NULL)
	{
		return false;
	}
	node->index=pNode->index;
	node->data=pNode->data;
	node->pParent=temp;

	if(direction==0)
	{
		temp->pLChild=node;
	}
	if(direction==1)
	{
		temp->pRChild=node;
	}
	return true;
}
bool Tree::DeleteNode(int nodeIndex,Node*pNode)
{
	Node*temp=SearchNode(nodeIndex);
	if(temp==NULL)
	{
		return false;
	}
	if(pNode!=NULL)
	{
		pNode->data=temp->data;
	}
	temp->DeleteNode();
	return true;
}
void Tree::PreorderTraversal()
{
	m_pRoot->PreorderTraversal();
}
 void Tree::InorderTraversal()
 {
	m_pRoot->InorderTraversal();
 }
 void Tree::PostorderTraversal()
 {
	 m_pRoot->PostorderTraversal();
 }
 

/*
   二叉树——链表实现
   Tree();//创建树
   ~Tree();//销毁树
   Node*SearchNode(int nodeIndex);//搜索结点
   bool AddNode(int nodeIndex,int direction,Node*pNode);//添加结点
   bool DeleteNode(int nodeIndex,Node*pNode);//删除结点
   void PreorderTraversal();//前序遍历(根左右)
   void InorderTraversal();//中序遍历(左根右)
   void PostorderTraversal();//后续遍历(左右根)

   结点要素:索引  数据  左孩子指针   右孩子指针  父结点指针
    
              (0)

		5(1)        8(2)

    2(3)   6(4)  9(5)   7(6)

	前序遍历:0 1 3 4 2 5 6
	中序遍历:3 1 4 0 5 2 6
	后续遍历:3 4 1 5 6 2 0

*/
#include<iostream>
#include"Tree.h"
using namespace std;
int main(void)
{
	Node*node1=new Node();
	node1->index=1;
	node1->data=5;

	Node*node2=new Node();
	node2->index=2;
	node2->data=8;

	Node*node3=new Node();
	node3->index=3;
	node3->data=2;

	Node*node4=new Node();
	node4->index=4;
	node4->data=6;

	Node*node5=new Node();
	node5->index=5;
	node5->data=9;

	Node*node6=new Node();
	node6->index=6;
	node6->data=7;

	Tree*tree=new Tree();
	tree->AddNode(0,0,node1);
	tree->AddNode(0,1,node2);

	tree->AddNode(1,0,node3);
	tree->AddNode(1,1,node4);

	tree->AddNode(2,0,node5);
	tree->AddNode(2,1,node6);
	cout<<"PreorderTraversa:"<<endl;
	tree->PreorderTraversal();
	cout<<endl;
	cout<<endl;
	
	tree->DeleteNode(6,NULL);
	cout<<"InorderTraversal:"<<endl;
	tree->InorderTraversal();
	cout<<endl;
	cout<<endl;

	tree->DeleteNode(2,NULL);
	cout<<"PostorderTraversal:"<<endl;
	tree->PostorderTraversal();
	cout<<endl;
	cout<<endl;

	delete tree;
	tree=NULL;
	system("pause");
	return 0;
}

打印结果:
在这里插入图片描述

  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值