在B树中寻找最小密钥和前任

时间:2013-07-08 01:05:13

标签: algorithm b-tree array-algorithms

解释如何找到存储在B树中的最小密钥以及如何查找存储在B树中的给定密钥的前任。

3 个答案:

答案 0 :(得分:1)

查找最小密钥

  • 递归地转到最左边的孩子,直到找到NULL

找到前任

  • 首先通过递归遍历树从上到下来找到给定元素
  • 然后有两种情况

  • 如果该元素已离开子元素,请找到以该子元素为基础的子树中最大的元素

  • 如果该元素未离开孩子,则必须向上

答案 1 :(得分:0)

您可以编写递归函数以通过每个父节点的左右节点遍历B树(从根)。在此期间,您可以比较所有值并查找最小值及其父节点。

答案 2 :(得分:0)

#define BT_T 3// degree of B-tree
#define INF -32768

//struct of a node of B-tree
struct bnode {
    int num;//number of keys in a bnode
    int leaf; //1 for leaf,0 for not leaf
    int value[2*BT_T -1]; //suppose all the key in B-tree is positive.
    struct bnode *child[2*BT_T];
};

//minimum is the most left leaf's first value.
int find_min(struct bnode *p) {
    if(p==NULL)
        return -1;
    if(!p->leaf)
        find_min(p->child[0]);
    else
        return p->value[0];
}

//a predecessor's candidate of a given key are less than the key.
//the predecessor among the candidate is the largest one of them.
int find_predecessor(struct bnode *node,int val) {
    int i,temp,max = INF;
    for(i=0;i<num-1;i++) {
        if(node->value[i] >= val)
            break;
        if(max > node->value[i]) {
            max = ->value[i];
            temp = find_predecessor(node->child[i],val);
    max = (temp>max?temp:max);
        }
    }
    return max;
    //when there is no predecess,max is INF.
}