Files
python/TangDou/LuoGuBook/LX_16_3.cpp
HuangHai 1f397eca87 'commit'
2025-08-30 18:35:01 +08:00

13 lines
379 B
C++
Raw Permalink Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

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