BST クラスに挿入機能があり、親ノードを設定しようとしていますが、少し問題があります。これが私の機能です:
void BST::insert_node(Play& play, BNode *&t){
if( t == NULL)
t = new BNode(play, t, NULL, NULL);
else if( play < t->play){
insert_node(play, t->left);
if (height(t->left) - height(t->right) == 2){
if( play < t->left->play)
rotate_with_left_child(t);
else
double_rotate_with_left_child(t);
}
}
else if( t->play < play){
insert_node(play, t->right);
if(height(t->right) - height(t->left) == 2){
if( t->right->play < play)
rotate_with_right_child(t);
else
double_rotate_with_right_child(t);
}
}
else
t->node_height = max(height( t->left ), height( t->right )) + 1;
}
現在、ノードの親はすべて NULL です。親ノードを正しく設定する方法を誰かが教えてくれますか?
これは私のノード構造です:
struct BNode {
Play play;
BNode * parent;
BNode * left;
BNode * right;
int times_searched;
int node_height;
BNode(Play p = Play(), BNode *par = NULL, BNode *lt = NULL, BNode *rt = NULL, int ts = 0, int nh = 0)
: play(p), parent(par), left(lt), right(rt), times_searched(ts), node_height(nh) {}
};