You should try to ____conversation with the person on your right or left, but you should not try to talk to someone who is a long way from you.A: get intoB: get out ofC: get offD: get on with

题目

You should try to ____conversation with the person on your right or left, but you should not try to talk to someone who is a long way from you.

A: get into

B: get out of

C: get off

D: get on with


相似考题
更多“You should try to ____conversation with the person on your right or left, but you sh ”相关问题
  • 第1题:

    Merry Christmas, George! Here is a card for ________, with ________ best withes.

    A.you…your

    B.you…our

    C.us…our

    D.us…your


    参考答案:B

  • 第2题:

    ( ) – Is Miss White __________ English teacher, Maria?

    – No, she teaches __________ geography.

    A.your;my

    B.you;mine

    C.you;us

    D.your;us


    正确答案:D

  • 第3题:

    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;


    s->prior=p;s->next=p->next;p->next->prior=s;p->next=s;

  • 第4题:

    某用户的E-mail地址为you87@online.sh.cn,则该用户的用户名为( )。

    A.you87

    B.online

    C.sh

    D.online.sh.cn


    正确答案:A


  • 第5题:

    设指针变量p指向双向链表中节点A,指针变量s指向被插入的节点X,则在节点A的后面插入节点X的操作序列为()

    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;

    答案:D
    解析:
    为了防止在插入节点时链表断裂,在修改指针时,需要先使s的后继指针指向p原来的后继节点,然后修改p的后继指针。

  • 第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;


    s->prior=p;s->next=p->next;p->next->prior=s;p->next=s;