二叉树中的随机插入

时间:2018-06-26 15:41:57

标签: c++ binary-tree

如何在C ++中通过不使用模板类从左到右随机插入元素来实现二叉树?这是我的插入功能。谁能指出这是怎么回事?请提供您的建议。

Node* insert(int data){
    Node* temp=new Node();
    temp->data=data;

    if(root==NULL){
        temp->left=temp->right=NULL;
    }
    else if(!temp->left){
        temp->left=insert(data);
    }
    else if(!temp->right){
        temp->right=insert(data);
    }
    return temp;
}

0 个答案:

没有答案