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;
}