- A.线性表的顺序存储结构
- B.栈
- C.队列
- D.线性表的链式存储结构
- A.2k
- B.2k-1
- C.2<sup>k</sup>
- D.2<sup>k-1</sup>
- A.ABDGCEFH
- B.DGBAECHF
- C.GDBEHFCA
- D.ABCDEFGH
- A.直接插入排序方法
- B.简单选择排序方法
- C.快速排序方法
- D.堆排序方法
- A.M[2,4]
- B.M[3,4]
- C.M[3,5]
- D.M[4,4]
- A.线性表的线性存储结构优于链式存储结构
- B.二叉树的第i层上有2i-1个结点,深度为K的二叉树上有2k-1个结点
- C.二维数组是其数据元素为线性表的线性表
- D.栈的操作方式是先进先出
- A.s=rear;
- B.rear=rear—>next; rear=rear—>next; free(rear); free(s);
- C.rear=rear—>next—>next;
- D.s=rear—>next—>next; free(rear); rear—>next—>next=s—>next; free(s);
- A.先根遍历
- B.中根遍历
- C.后根遍历
- D.按层次遍历
- A.a5,a4,a3,a2,a1
- B.a4,a5,a3,a2,a1
- C.a4,a3,a5,a1,a2
- D.a1,a2,a3,a4,a5
- A.n-1
- B.n
- C.<img src=http://202.197.127.220/SoruceFiles/images/2010q3/ct_zkgxsjjgm_zkgxsjjgchoose_0141_104.jpg onerror="javascript:this.src='../images/onErrorImg.jpg'" />
- D.不确定
- A.31
- B.32
- C.63
- D.64
- A.p—>next=p—>next—>next;
- B.p=p—>next;p—>next=p—>next—>next;
- C.p—>next=p—>next;
- D.p=p—>next—>next;
- A.120
- B.112
- C.110
- D.114
- A.先序遍历
- B.中序遍历
- C.后序遍历
- D.按层次遍历