甲板部由大副负责。
A.The captain is the head of a ship.
B.The master is the head of a ship.
C.The deck department is under the command of the chief officer.
D.The pilot is the head of a ship.
第1题:
在带有头结点的单链表Head中,要向表头结点之后插入一个由指针p指向的结点,则执行()。
A.p->next=Head->next; Head->next=p;
B.p->next=Head; Head=p;
C.p->next=Head; p=Head;
D.Head=p;p->next=Head;
第2题:
3、已知广义表LS=((a,x,y,z),(b,c)),运用head和tail函数取出原子c的运算是()。
A.head(head(tail(tail(LS))))
B.head(tail(head(tail(LS))))
C.head(head(head(tail(LS))))
D.tail(tail(head(tail(LS))))
第3题:
在一个带头结点的单链表中,若 head 所指结点是头结点,若要删除第一个实际元素结点,则执行()。
A.p=head->next;head->next=p->next;free(p);
B.p=head;free(p);head=head->next;
C.head=head->next;p=head;free(p);
D.p=head;head=head->next;free(p);
第4题:
带头结点的单链表head为空的判定条件是______。
A.head = = NULL;
B.head->next = = NULL;
C.head->next = = head;
D.head! = NULL;
第5题:
带头结点的单链表head为空的判定条件是
A.head=NULL;
B.head->next=NULL;
C.head->next=head;
D.head!=NULL;