---When are you going on holiday? ---_______.A、Only one-week holidayB、Next week.C、They haven’t decided where to goD、With my wife.
---When are you going on holiday? ---_______.
A、Only one-week holiday
B、Next week.
C、They haven’t decided where to go
D、With my wife.
相关考题:
It was _____ he came bank from Africa that wear _________ he met the girl he would like to marry.A. when; thenB. not; untilC. not until; thatD. only; when
Certkiller .com has asked you to create a file management application to monitor the hosts file.Certkiller .com has instructed you to change the hosts file if it has been changed.You, therefore, need to display the size and whether the hosts file is set to read-only.What should you do?()A.B.C.D.
Why do you want a new job ______you've got such a good one already?A. thatB. whereC. whichD. when
已知h是指向单向加头链表的首指针,删除表头结点的操作是_____。A.p=h,h=p->next;free(p);B.p=h->next;free(p);h=h->next;C.p=h->next,h->next=p->next;free(p);D.free(h->next);h=h->next;
已知h是指向单向加头链表的头指针,删除首元结点的操作是_____。A.p=h,h=p->next;free(p);B.p=h->next;free(p);h=h->next;C.p=h->next,h->next=p->next;free(p);D.free(h->next);h=h->next;
已知h是指向单向加头链表的头指针,p指向一个新结点,将p所指结点插在表头的操作是_____。A.p->next=h,h->next=p;B.p->next=h->next,h->next=p;C.p->next=h,h=p;D.h->next=p,p->next=h->next;
已知h是指向单向加头链表的首指针,p指向一个新结点,将p所指结点插在表头的操作是_____。A.p->next=h,h->next=p;B.p->next=h->next,h->next=p;C.p->next=h,h=p;D.h->next=p,p->next=h->next;
已知h是指向单向加头链表的首指针,删除表头结点的操作是_____。A.p=h->next;free(p);h=h->next;B.free(h->next);h=h->next;C.p=h,h=p->next;free(p);D.p=h->next,h->next=p->next;free(p);
对于一个头指针为h的链栈(带头结点),正确的出栈操作是()。A.h=h->next;B.h->next=h->next->next;C.h=h->next->next;D.h->next=h;