一个令人痛苦的愚蠢问题,我几乎羞于问。我一直在搜索过去 4 个小时,测试了不同的算法,在纸上尝试了很多,但仍然无法让它工作。
我将为您省去项目实施的细节,但基本问题是:“您如何处理在预购二叉树中插入节点。
通过 Pre-Order BST,我的意思是所有节点都应该以这样的方式插入,即使用 pre-order 遍历(例如用于打印)遍历树应该按升序打印节点。
我只需要一个简单的算法。我尝试了一个简单的插入算法here(在stackoverflow上,但它似乎不正确(也在纸上尝试过));。
节点基本上是这样的:
typedef struct testNode{
int key;
struct testNode *leftChild;
struct testNode *rightChild;
}NODE;
插入数据只是一个唯一整数列表。我创建一个以 int 为键的节点,然后应该将该节点添加到树中。我有根节点,它以 NULL 指针开始。
抱歉,如果有任何不清楚的地方。
谢谢您的帮助!
编辑:根据下面提供的算法,这就是我想出的:
void insert(NODE **tree,int key){
if(*tree){
if ((*tree)->key >= key){
//Insert before this .....
NODE *temp = createNode(key);
temp->lc = (*tree);
(*tree) = temp;
}
else if(!(*tree)->rc){
//Right Child doesn't exist ....
insert(&(*tree)->lc,key);
}
else if((*tree)->rc->key < key){
//Right child exists and is smaller than spread ... insert left ...
insert(&(*tree)->lc,key);
}
else{
//Right child exists and is greater than spread ... insert right ...
insert(&(*tree)->rc,key);
}
//If the code as progressed to this point, insertion must have occured,
//and the code returns ......
} else {
//the **tree pointer points to NULL. Insert here ....
SPREADNODE *temp = createSpreadNode(spread);
//temp->lc = (*tree);
(*tree) = temp;
}
}