A. was being
B. was
C. should be
D. were
第1题:
第2题:
()refers to a word or expression that is prohibited by the “polite” society from general use.
ALinguistic taboo
BEuphemism
CAddress term
DSlang
第3题:
7、已知last指向单向简单链表的尾结点,将s所指结点加在表尾,正确的操作是____。
A.s->next=s,last=s,last->next=NULL;
B.last->next=s,s->next=NULL,last=s;
C.s->next=NULL, last->next=s, s=last;
D.s->next=last, last->next=NULL,last=s;
第4题:
第5题:
已知last指向单向简单链表的尾结点,将s所指结点加在表尾,不正确的操作是____。
A.last->next=s,last=s,last->next=NULL;
B.last->next=s,s->next=NULL,last=s;
C.s->next=NULL, last->next=s, s=last;
D.s->next=NULL, last->next=s,last=s;
第6题:
已知last指向单向简单链表的尾结点,将s所指结点加在表尾,正确的操作是____。
A.s->next=s,last=s,last->next=NULL;
B.last->next=s,s->next=NULL,last=s;
C.s->next=NULL, last->next=s, s=last;
D.s->next=last, last->next=NULL,last=s;