- 论坛徽章:
- 0
|
#include <stack>
#include <iostream>
//#include"struct.h"
#include"bintree.h"
void BTree: reorder(BTreeNode * t)
{
if(t==NULL){
// cout<<"aaa"<<endl;
return;}
cout<<t->data<<endl;
Preorder(t->left);
Preorder(t->right);
}
void BTree::Inorder(BTreeNode * t)
{
stack <BTreeNode *> s;
BTreeNode * p=t;
while(1)
{
while(p!=NULL)
{
s.push(p);//不完整
p=p->GetLeft();
}
if(s.empty())
return;
else
{
p=s.pop();
cout<<p->data;
p=p->GetRight();
}
}
}
void BTree: ostorder(BTreeNode * t)
{
stack <NodeInt> s;
s.push(NodeInt(t,1));
while(!s.StackEmpty())
{
NodeInt N;
N=s.pop();
if(N.btr!=NULL)
{
if(N.a==1)
{
s.push(NodeInt(N.btr,2));
s.puh(NodeInt(N.btr->left,1));
}
if(N.a==2)
{
s.push(NodeInt(N.btr,3));
s.puh(NodeInt(N.btr->right,1));
}
if(N.a==3)
{
cout<<N.btr->data<<endl;
}
}
}
}
void BTree::creattree(BTreeNode * & toor)
{
int data,lflag,rflag;
char item;
cout<<"please the data of the bintreenode:"<<endl;
cin>>data;
toor=new BTreeNode(data);
cout<<"input the flag,if"<<stop<<"is input,stop the data inputing!"<<endl;
cin>>item;
if(item!=stop)
{
cout<<"if current node has leftchild,input 1,or 0"<<endl;
cin>>lflag;
if(lflag==1)
creattree(toor->left);
cout<<"if current node has rightchild,input 1,or 0"<<endl;
cin>>rflag;
if(rflag==1)
creattree(toor->right);
}
}
报错: error C2065: 'cout' : undeclared identifier |
|