0

我试图实现一个简单的二叉搜索树来练习。我试图只添加值并打印节点中的值。但是,我没有得到节点中值的正确升序。这是我所拥有的:

struct Node
{
    int data;
    Node* leftN;
    Node* rightN;

};

typedef Node* Node_ptr;
Node_ptr head;

//INSERT_VALUE FUNCTION
Node* insert_value(Node_ptr leaf, int key)
{
    //Root case when there is no set value yet  
    if(leaf == NULL)
    {
        leaf = new Node;
        head = leaf;
        cout << "Make the first node" << endl;
        leaf->data = key;
        leaf->leftN = NULL;
        leaf->rightN = NULL;
        return leaf;
    }   
    //Left child Node
    if(key < leaf->data)
    {
        //Search for a spot in the tree to add a Node (left value < root value < right value)
        //This is only true for the left child Node
        if(leaf->leftN != NULL)
            insert_value(leaf, key);
        //We have found a spot in the tree to add a new Node and add the value of key
        else 
        {
            cout << "Insert-left" << endl;
            leaf->leftN = new Node;
            leaf = leaf->leftN;
            leaf->data = key;
            leaf->leftN = NULL;
            leaf->rightN = NULL;
            return leaf;
        }
    }

    //Right child Node
    else if(key >= leaf->data)
    {
        //Search for a spot to add a new Node in the tree (only amongst the right child Nodes)
        if(leaf->rightN != NULL)
            insert_value(leaf, key);    
        //Once we have found a spot to add a new Node, append the new Node
        else
        {
            cout << "Insert-right" << endl;
            leaf->rightN = new Node;
            leaf = leaf->rightN;    
            leaf->data = key;
            leaf->leftN = NULL;
            leaf->rightN = NULL;
            return leaf;
        }
    }   
}

//PRINT FUNCTION
void printTree(Node_ptr leaf)
{
    if(leaf == NULL)
        return;
    printTree(leaf->leftN);
    cout << "Data element: " << leaf->data << endl;
    printTree(leaf->rightN);
}

//MAIN
int main()
{
    Node_ptr root = NULL;
    int i;

    //initialize values
    for(i = 1; i < 12; i+=2)
        root = insert_value(root, i);
    root = head;
    for(i = 0; i < 11; i+=2)
        root = insert_value(root, i);
    root = head;
    printTree(root);

    root = head;
    cout << "Head Node: " << root->data << endl;

    return 0;
}

当我打印结果时,我得到的是:0、2、4、6、8、10、1、3、5、7、9、11,头节点的值为1

4

2 回答 2

1

因为您将插入称为:

    root = insert_value(root, i);

您插入的位置始终使用从最后一次插入开始的子树。除了重新开始添加奇数的时间,当您开始插入头部时。

如果您创建一个class BinarySearchTree包含头指针的 a 和一个采用int value调用的 insert 方法Node::insert( head, value ),那么您可以只在该类上调用 insert ,而不向它传递一个节点,并且它总是可以看到插入使用的根递归开始的树。

只有我,但我会有一个 Node 的构造函数,它接受一个int并将指针初始化为 NULL。这样你就不必在插入方法中这样做了。

于 2012-04-11T23:45:08.550 回答
0

在叶子->节点?!= NULL 情况,我认为不是打电话

insert_value(leaf, key);

你想说

leaf->node? = insert_value(leaf->node?, key)

在哪里 ?当然是 L 或 R。

您可能会考虑为该方法添加注释,如下所示:

// Adds the given key to the (sub-)tree rooted at node* then returns the new root
// of that (sub-)tree.
node *insert_value_and_return_root(node *root, int value) { ... }
于 2012-04-11T23:43:13.967 回答