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.

16 lines
368 B

2 years ago
#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;
}