二叉搜索树;自组织搜索/旋转C ++

时间:2015-04-01 18:09:03

标签: c++ search binary-search-tree

对于我的项目,我将创建一个自组织二进制搜索树。我已成功创建了BST,但出于某种原因,我无法弄清楚如何实施组织部分。

更具体一点, 当我执行搜索值时,我将增加其搜索计数。一旦搜索计数等于" Thresh hold Value" (通过构造函数设置)我将搜索到的节点向上旋转一个。

我相信我可以弄清楚如何执行旋转但我的问题在于整数变量 searchCount threshVal 。出于某种原因,我无法弄清楚如何让 searchCount 仅以搜索到的值递增,并在搜索新值时重置

例如: 我有" 1 2 3 4 5"在我的BST。我执行搜索值" 3",我发现它,将搜索计数增加到1。 然后,我执行另一次搜索,这次是关于值" 5"。然后 searchCount 变量再次递增到2,因为我搜索了不同的值,因此它应为1。

这是我的搜索功能。它是一个很大的.cpp文件,所以我只包含一个函数。

template <typename T>
bool BST<T>::contains(const T& v, BSTNode *&t)
{
    if (t == nullptr)
        return false;
    else if(v < t->data)
        return contains(v, t->left);
    else if(t->data < v)
        return contains(v, t->right);
    else{

        if(t->right == nullptr)
            return true;
        /*
          Problem lies in the following segment, I just added the little
          rotation portion to try and get something to work for testing
          purposes. The problem still lies with threshVal and searchCount
         */
        if (searchCount == threshVal){
            BSTNode *temp = t->right;
            t->right = temp->left;
            temp->left = t;
            t = temp;

            if(t == root)
                searchCount = 0;
        }
        return true;
    }
}

如果我需要提供更多信息,或者添加.cpp文件的其余部分,请告诉我。谢谢!

1 个答案:

答案 0 :(得分:0)

我无法添加评论,但您是否尝试为每个节点提供自己的int计数?

示例:

struct treeNode
    {
        treeNode* left;
        treeNode* right;
        T data;
        treeNode() {left = NULL; right = NULL;};
        treeNode(const T&v, treeNode* l, treeNode* r){data = v; left = l;  right = r;};
int count = 0;
    };

然后在进行搜索时递增该节点的个别计数?