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

This file contains ambiguous Unicode characters!

This file contains ambiguous Unicode characters that may be confused with others in your current locale. If your use case is intentional and legitimate, you can safely ignore this warning. Use the Escape button to highlight these characters.

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