Next Tuesday
Next Thursday
Next Friday
第1题:
A、play
B、will be playing
C、are going to play
D、are to play
第2题:
在单链表中,删除p所指结点的直接后继的操作是 ( )
A.p—>next=p—>next—>next;
B.p=p—>next;p—>next=p—>next—>next;
C.p—>next=p—>next;
D.p=p—>next—>next;
第3题:
第4题:
The sports meeting was put off till the next week()rain.
Ain spite of
Bso
Cbecause
Dbecause of
第5题:
On Monday.
On Saturday.
On Friday.
第6题:
am wondering
when
does the next train leave
for
第7题:
s->next=p+1; p->next=s;
(*p).next=s; (*s).next=(*p).next;
s->next=p->next; p->next=s->next;
s->next=p->next; p->next=s;
第8题:
p->next=s;s->prior=p;p->next->prior=s;s->next=p->next;
p->next=s;p->next->prior=s;s->prior=p;s->next=p->next;
s->prior=p;s->next=p->next;p->next=s;p->next->prior=s;
s->prior=p;s->next=p->next;p->next->prior=s;p->next=s
第9题:
p->next = rear->next->next; rear->next = p
p->next = rear->next; rear->next->next = p
p->next = rear->next->next; rear->next->next = p
p->next = rear->next->next; rear->next->next = p->next
第10题:
p=q->next;p->next=q->next;
p=q->next;q->next=p;
p=q->next;q->next=p->next;
q->next=q->next->next;q->next=q;
第11题:
Since
hard
had better to
till next week
第12题:
when will they visit
when they will visit
when did they visit
when they visited
第13题:
We are planning to go on a trip to Europe next month.
第14题:
第15题:
第16题:
设rear是指向非空带头结点的循环单链表的尾指针,则在起始结点之前插入指针p所指结点的操作可表示为()
第17题:
P―>next=s;
p―>next=s;s―>prior=p;p―>next―>prior=s;p―>next―>prior=s;s―>prior=p;s―>next=p―>next;s―>next=p―>next
s―>prior=p;
s―>prior=p;s―>next=p―>next;s―>next=p―>next;p―>next=s;p―>next―>prior=s;p―>next―>prior=s;p―>next=s;
第18题:
in spite of
so
because
because of
第19题:
The next morning
my brother and me
did
for a walk
第20题:
p->next=p->next->next;
p=p->next;p->next=p->next->next;
p=p->next;
p=p->next->next;
第21题:
He has returned from a conference.
He’ll have a conference next Friday.
He’s waiting for the man in his office.
He won’t be available until next Friday.
第22题:
so do I
so will I
nor do I
nor will I
第23题:
p=head->next;head->next=head->next->next;delete p;
head->next=head->next->next;p=head->next;delete p;
p=head;head=head->next;delete p;
head=head->next;p=head;delete p;