单项选择题

在深度为6的满二叉树中,结点的个数为( )。

A.32
B.31
C.16
D.15
<上一题 目录 下一题>
热门 试题

单项选择题
以下选项中能正确把c1定义成结构体变量的是( )。
A.typedef struct
int red;
int red;
int green;
int blue;
COLOR;
COLOR c1;
B.struct color c1
int red
int red;
int green
int blue;
;
C.stmctcolor
int red,
int green;   
int blue;
c1;
D.struct
int red;
  int green;
int blue;
c1;
单项选择题
设有以下语句: typedef struct S int g; char h; T; 则下面叙述中正确的是( )。
A.可以用S定义结构体变量
B.可以用T定义结构体变量
C.S是struct类型的变量
D.T是stnictS类型的变量
相关试题
  • 有以下程序: main() char k; int ...
  • (48)~(50)以下程序的功能是:建立...
  • 有以下程序: #include <stdlib.h> ...
  • 有以下程序: int *f(int *x, int...
  • 设有如下程序: #include’string.h ma...