みなさん、こんにちは私は論理的な間違いを犯しますが、間違いは見つかりません。
ありがとうございました :))
私のアルゴリズム
#include <iostream> //iostream
using namespace std;
struct node{
struct node *left;
struct node *right;
int data;
};
void add(node *p,int sayi){
if(p==NULL){
p=new node();
p->data=sayi;
p->left=NULL;
p->right=NULL;
}
else if(p->data>=sayi){
add(p->left,sayi);
}
else {
add(p->right,sayi);
}
}
void postorder(node *p)
{
if(p!=NULL)
{
if(p->left!=NULL)
postorder(p->left);
if(p->right!=NULL)
postorder(p->right);
cout<< p->data<<endl;
}
else{
cout<<"hata"<<endl;
}
}
void main(){
struct node *k=NULL ;
int sayi=0;
while(sayi!=-1){
cout<<"Bir sayi giriniz...";
cin>>sayi;
add(k,sayi);
}
postorder(k);
system("pause");
}