You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
|
|
|
#include <bits/stdc++.h>
|
|
|
|
|
|
|
|
|
|
using namespace std;
|
|
|
|
|
|
|
|
|
|
int main() {
|
|
|
|
|
//题目:随机插入n个数,二叉搜索树(BST)的期望深度是多少?最坏深度的期望呢?
|
|
|
|
|
|
|
|
|
|
//阅读链接:https://www.cnblogs.com/wozaixuexi/p/9452004.html
|
|
|
|
|
|
|
|
|
|
// 在随机数据下,二叉搜索树的期望深度是log2n的
|
|
|
|
|
// 最坏的深度期望是:n
|
|
|
|
|
return 0;
|
|
|
|
|
}
|