gpt4 book ai didi

algorithm - 在二叉搜索树中查找中位数

转载 作者:塔克拉玛干 更新时间:2023-11-03 02:40:11 30 4
gpt4 key购买 nike

编写函数 T ComputeMedian() const 的实现,该函数在 O(n) 时间内计算树中的中值。假设这棵树是 BST 但不一定是平衡的。回想一下 n 个数的中位数定义如下:如果 n 是奇数,则中位数是 x,使得小于 x 的值的数量等于大于 x 的值的数量。如果 n 是偶数,则一加上小于 x 的值的个数等于大于 x 的值的个数。例如,给定数字 8、7、2、5、9,中位数是 7,因为有两个值小于 7 和两个值大于 7。如果我们将数字 3 添加到集合中,则中位数变为 5。

这是二叉搜索树节点的类:

template <class T>
class BSTNode
{
public:
BSTNode(T& val, BSTNode* left, BSTNode* right);
~BSTNode();
T GetVal();
BSTNode* GetLeft();
BSTNode* GetRight();

private:
T val;
BSTNode* left;
BSTNode* right;
BSTNode* parent; //ONLY INSERT IS READY TO UPDATE THIS MEMBER DATA
int depth, height;
friend class BST<T>;
};

二叉搜索树类:

template <class T>
class BST
{
public:
BST();
~BST();

bool Search(T& val);
bool Search(T& val, BSTNode<T>* node);
void Insert(T& val);
bool DeleteNode(T& val);

void BFT(void);
void PreorderDFT(void);
void PreorderDFT(BSTNode<T>* node);
void PostorderDFT(BSTNode<T>* node);
void InorderDFT(BSTNode<T>* node);
void ComputeNodeDepths(void);
void ComputeNodeHeights(void);
bool IsEmpty(void);
void Visit(BSTNode<T>* node);
void Clear(void);

private:
BSTNode<T> *root;
int depth;
int count;
BSTNode<T> *med; // I've added this member data.

void DelSingle(BSTNode<T>*& ptr);
void DelDoubleByCopying(BSTNode<T>* node);
void ComputeDepth(BSTNode<T>* node, BSTNode<T>* parent);
void ComputeHeight(BSTNode<T>* node);
void Clear(BSTNode<T>* node);

};

我知道我应该先计算树的节点,然后进行中序遍历,直到到达第 (n/2) 个节点并返回它。我只是不知道怎么做。

最佳答案

正如您所提到的,首先找到节点数,进行任何遍历都相当容易:

findNumNodes(node):
if node == null:
return 0
return findNumNodes(node.left) + findNumNodes(node.right) + 1

然后,当节点数为 n/2 时中止的中序遍历:

// index is a global variable / class variable, or any other variable that is constant between all calls
index=0
findMedian(node):
if node == null:
return null
cand = findMedian(node.left)
if cand != null:
return cand
if index == n/2:
return node
index = index + 1
return findMedian(node.right)

思想是中序遍历以排序的方式处理BST中的节点。因此,由于树是 BST,您处理的第 i 个节点是顺序上的第 i 个节点,这当然也适用于 i= =n/2,当你发现它是第n/2个节点时,你就返回它。


作为旁注,您可以向 BST 添加功能以有效地找到 i 元素(O(h),其中 h 是树的高度),使用 order statistics trees .

关于algorithm - 在二叉搜索树中查找中位数,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/29989788/

30 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com