A. 我不认为如今在市场中有很多冒险的欲望。
B. 我认为如今在市场中没有很多冒险的欲望。
C. 我认为如今在市场中有很多冒险的好奇心。
第1题:
I’d rather you ________ make any comment on the issue for the time being.
A) don’t B) wouldn’t C) didn’t D) shouldn’t
选C
would rather that……"宁愿……",that从句中用过去时表示现在或将来要做的事。
第2题:
第3题:
设指针变量p指向双向链表中结点A,指针变量s指向被插入的结点X,则在结点A的后面插入结点X的操作序列为()
A.p->right=s; s->left=p; p->right->left=s; s->right=p->right;
B.s->left=p;s->right=p->right;p->right=s; p->right->left=s;
C.p->right=s; p->right->left=s; s->left=p; s->right=p->right;
D.s->left=p;s->right=p->right;p->right->left=s; p->right=s;
第4题:
-- Ann is in hospital.
-- Oh, really? I __ know. I __ go and visit her.
A. didn’t; am going to B. don’t; would
C. don’t; will D. didn't; will
第5题:
2、在循环双链表的p所指结点之后插入s所指结点的操作是()
A.p->right=s;s->left=p;p->right->left=s;s->right=p->right;
B.p->right=s;p->right->left=s;s->left=p;s->right=p->right;
C.s->left=p;s->right=p->right;p->right=s;p->right->left=s;
D.s->left=p;s->right=p->right; p->right->left=s;p->right=s;
第6题:
在循环双链表的p所指节点之后插入s所指节点的操作是
A.p->right=s;s->left=p;p->right->left=s;s->right=p->right;
B.s->left=p;s->right=p->right;p->right->left=s;p->right=s;
C.s->left=p;s->right=p->right;p->right=s;p->right->left=s;
D.p->right=s;p->right->left=s;s->left=p;s->right=p->right;