데이터 구조의 이 진 트 리 를 재 귀적 으로 만 들 고 BFS 를 옮 겨 다 니 며 먼저 중간 순서 로 옮 겨 다 닙 니 다.

1540 단어
#include "iostream"
#include "queue"
using namespace std;
struct Node
{
	int data;
	struct Node *lchild;
	struct Node *rchild;
};
Node* CreateNode();
void BFS(Node *node);//    ,          
void Xianxu(Node *node);//    
void Zhongxu(Node *node);//    
void Houxu(Node *node);//    
int main()
{
	cout << "          ,  -1            "<> d;
	if (d == -1)
	{
		node = NULL;
	}
	else
	{
		node->data = d;
		node->lchild = CreateNode();
		node->rchild = CreateNode();

	}
	return node;
}
//      
void BFS(Node *node)
{
	queue nodeQueue;
	nodeQueue.push(node);
	while (!nodeQueue.empty())
	{
		Node *tnode;
		tnode = nodeQueue.front();
		nodeQueue.pop();
		cout << tnode->data << " ";
		if(tnode->lchild!=NULL)
		nodeQueue.push(tnode->lchild);
		if (tnode->rchild != NULL)
		nodeQueue.push(tnode->rchild);
	}
}
void Xianxu(Node *node)
{

	if (node != NULL) 
	{
		cout << node->data << " ";
		Xianxu(node->lchild);
		Xianxu(node->rchild);
	}
	
}
void Zhongxu(Node *node)
{
	if (node != NULL)
	{
		Zhongxu(node->lchild);
		cout << node->data << " ";
		Zhongxu(node->rchild);
	}

}
void Houxu(Node *node)
{
	if (node != NULL)
	{
		Houxu(node->lchild);
		Houxu(node->rchild);
		cout << node->data << " ";
	}
	
}

좋은 웹페이지 즐겨찾기