我在做DSA(数据结构和算法)作业时偶然发现了一个问题。我说要用插入和搜索算法实现B树。就目前而言,搜索工作正常,但我在实现插入功能时遇到了麻烦。特别是B树节点分裂算法背后的逻辑。我想出的伪代码/ C风格如下:
#define D 2
#define DD 2*D
typedef btreenode* btree;
typedef struct node
{
int keys[DD]; //D == 2 and DD == 2*D;
btree pointers[DD+1];
int index; //used to iterate throught the "keys" array
}btreenode;
void splitNode(btree* parent, btree* child1, btree* child2)
{
//Copies the content from the splitted node to the children
(*child1)->key[0] = (*parent)->key[0];
(*child1)->key[1] = (*parent)->key[1];
(*child2)->key[0] = (*parent)->key[2];
(*child2)->key[1] = (*parent)->key[3];
(*child1)->index = 1;
(*child2)->index = 1;
//"Clears" the parent node from any data
for(int i = 0; i<DD; i++) (*parent)->key[i] = -1;
for(int i = 0; i<DD+1; i++) (*parent)->pointers[i] = NULL
//Fixed the pointers to the children
(*parent)->index = 0;
//the line bellow was taken out for creating a new node that didn't have to be there.
//(*parent)->key[(*parent)->index] = newNode(); // The newNode() function allocs and inserts a the new key that I need to insert.
(*parent)->pointers[index] = (*child1);
(*parent)->pointers[index+1] = (*child2);
}
我几乎可以肯定我用指针弄乱了一些东西,但我不确定是什么。任何帮助表示赞赏。也许我需要对B-Tree主题进行更多的研究?我必须补充说,虽然我可以使用C ++的基本输入/输出,但我需要使用C风格的结构。
答案 0 :(得分:1)
您不需要在此处创建新节点。您显然已经创建了两个新的子节点。填充子项后,您只需要通过每个子项中的第一个键的副本将父项指向这两个子项,并将其键计数调整为两个。您也不需要将父键设置为-1。