没有搜到到结果?点击这里求解答/求资源。
【判断题】
个数组只能有一个数指针

正确
错误
【单选题】
一个顺序栈S,栈顶指针top,则将元素e入栈的操作是( )。

*S->top=e;S->top++;
S->top++;*S->top=e;
*S->top=e
S->top=e;
【单选题】
指针head的带头结点的单向链表空的判定条件是( )真。

A. head= =NULL
B. head-next= =NULL
C. head-next=NULL;
D. head-next!= NULL
【单选题】
个数据对象int *类型,则指向该对象的指针类型

int
int *
int **
int
【单选题】
单链表指针p的结点之后插入指针s的结点,正确的操作是( )。

p-next=s;s-next=p-next
s-next=p-p-next=s
p-next=s;p-xt=s-next
p-next=s-p-next=s
【判断题】
带头结点的单向链表空的判断条件是head = =NUL(设指针head)。

正确
错误
【单选题】
This bright girl __________ the truth in front of the enemy.

didn’t say
couldn’t speak to
said
didn’t tell
【单选题】
假定a是一个数组名,则a[i]的指针访问方式( )。

sizeof(a[i])
*a+i
a+i
*(a+i)
【单选题】
假定a是一个数组名,则a[i]的指针访问方式( )。

sizeof(a[i])
*a+i
a+i
*(a+i)
【判断题】
指向整型数据的指针类型表示“int *”,读作“指向int的指针”或简称“int指针”。

正确
错误