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.

13 lines
379 B

2 years ago
#include <bits/stdc++.h>
using namespace std;
int main() {
//题目随机插入n个数二叉搜索树(BST)的期望深度是多少?最坏深度的期望呢?
//阅读链接https://www.cnblogs.com/wozaixuexi/p/9452004.html
// 在随机数据下二叉搜索树的期望深度是log2n的
// 最坏的深度期望是n
return 0;
}