网友您好, 请在下方输入框内输入要搜索的题目:

题目内容 (请给出正确答案)

甲板部由大副负责。

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.


参考答案

更多 “ 甲板部由大副负责。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. ” 相关考题
考题 从L=(),())中,取出banana元素的表达式为()。A、head(tail(L))B、head(head(tail(L)))C、tail(head(tail(L)))D、head(tail(head(tail(L))))

考题 设有指针head指向的带表头结点的单链表,现将指针p指向的结点插入表中,使之成为第一个结点,其操作是______其中p^.next、head^.next分别表示p、head所指结点的链域。A.p^.next:=head^.next; head^.next:=pB.p^.next:=head^.next; head:=pC.p^.next:=head; head:=pD.head^.next:=head; p:=head

考题 设单链表表头指针为head,现将指针P指向的结点插入表中,使之成为第一个结点,其操作是 ______。其中p^. next、head^.next分别表示p、head所指结点的链域。A.p^. next:=head^. next;head^. next:=pB.p^. next:=head^. next;head:=pC.p^. next:=head;head:=pD.head^. next:=head;p:=head

考题 2、在一个带头结点的单链表中,若 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);

考题 在带有头结点的单链表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;

考题 带头结点的单链表head为空的判定条件是______。A.head = = NULL;B.head->next = = NULL;C.head->next = = head;D.head! = NULL;

考题 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))))

考题 带头结点的单链表head为空的判定条件是A.head=NULL;B.head->next=NULL;C.head->next=head;D.head!=NULL;

考题 在一个带头结点的单链表中,若 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);