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

16 lines
368 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() {
// 1、 二叉树
// a,b,c,d,e为二叉树f不是二叉树
// 2、完美二叉树(满二叉树)
// b,e是完美二叉树; a,c,d,f不是完美二叉树
// 3、完全二叉树
// c是完全二叉树a,d,f不是完全二叉树,b和e完美二叉树
return 0;
}