大题只会两个。 分享下,仅供参考,不保证正确性。。 满排序二叉树: #include<cstdio> #include<cmath> using namespace std; int judge(int r,int a,int b,int c){ if(a >= r && b >= r && c >= r) return 1; if(a <= r && b <= r && c &...