template<class item_type>
struct node{
item_type x;
node<item_type> *left;
node<item_type> *right;
//functions
};
template<class item_type, class param>
class Tree{
node<item_type> *root;
public:
item_type Get_Item(param item);
void Add_Item(item_type item);
void Delete_Item(item_type item);
//more functions
Tree();
};
template<class item_type, class param>
Tree<item_type, param>::Tree()
{
this->root = new node<item_type>;
this->root->left=NULL;
this->root->right=NULL;
}
添加項:程序崩潰
void Tree<item_type, param>::Add_Item(item_type item)
{
node<item_type> newItem;
newItem.x = item;
node<item_type> *cur = root;
node<item_type> *prev;
if(cur->x==NULL)
cur->x=item;
int ifGreater;
while(cur->left!=NULL || cur->right!=NULL)
{
if(item<cur->x)
{
ifGreater = 0;
prev = cur;
cur = cur->left;
}
else
{
ifGreater = 1;
prev = cur;
cur = cur->right;
}
}
if(ifGreater==1)
prev->right = &newItem;
if(ifGreater==0)
prev->left = &newItem;
}
問題就在這裏發生在cout<<1
此功能;
template<class item_type, class param>
void Tree<item_type, param>::Delete_Item(item_type item)
{
node<item_type> *cur = root;
node<item_type> *prev;
int ifGreater;
if(cur==NULL)
{
cout<<"Not found"<<endl;
return;
}
while(cur!= NULL && (cur->left!=NULL || cur->right!=NULL))
{
cout<<1; //crash occurs RIGHT before here as 1 is never printed
if(item<cur->x)
{
//do something
}
}
的問題cout<<1
之前發生和int ifGreater;
聲明後cout
僅僅只是爲了測試它運行,它停止運行。 我運行使用調用此函數來
int main()
{
Tree<int,int> theTree;
theTree.Add_Item(1); //so the tree isn't empty
theTree.Delete_Item(1);
}
注:該計劃甚至沒有讓過去的第一次迭代,處理的不當內存(這是固定的)是不是此特定錯誤的問題。
你是如何初始化root的? – pippin1289
@ pippin1289在構造函數中'root = new node' –
SemicolonExpected
至少你希望在刪除當前節點'cur'後退出循環。你可能還需要修補指向這個節點的指針,可能在刪除它之前。 –