niusouti.com
更多“The question is ________ we willhave oursports meet next week. ”相关问题
  • 第1题:

    I can’t wait ______ the pop singer.

    A: met

    B: to meet

    C: meeting

    D: meet


    参考答案:B

  • 第2题:

    The children _____ a good time at the party very much right now.

    A、had

    B、have

    C、are having

    D、will have


    正确答案:C

  • 第3题:

    If possible please suggest further improvement of the String class.

    Question 3:

    Given a link list, detect whether it's circular using only one loop.

    Tips: Below implementation is allowed

    for( ... )

    {

    ...

    }

    The following implementations is NOT allowed

    ...

    for( ... )

    {

    ...

    for( ... ) {...}

    }

    ...

    or

    ...

    for( p = list->head, q = list->head; p != NULL && q != NULL; p = p->next )

    {

    ...

    }

    ...

    for( ... )

    {

    ...

    }


    正确答案:
     

  • 第4题:

    You didn’t need to describe her. I ___her several times.

    A.had met

    B. have met

    C. met

    D. meet


    正确答案:B

  • 第5题:

    Simplify the following Boolean expression

    !((i ==12) || (j > 15))

    struct Node {

    int value;

    Node* next;

    };

    1.1 Get the value of the Nth node from last node in the linked list.

    PARAM HEAD: the first element in the linked list:

    PARAM n: the number of the node counted reversely

    RETURN: the value of the node, or -1 if not exists

    int GetValue(Node* HEAD, int n)

    {

    }

    1.2 Delete a node WITHOUT using the HEAD pointer.

    PARAM p: A pointer pointed to a node in the middle of the linked list.

    RETURN: void

    void Delete(Node* p)

    {

    }

    1.3 Insert a new node before p WITHOUT using the HEAD pointer

    PARAM p: A pointer pointed to a node in the middle of the linked list.

    PARAM value: new Node value

    RETURN: void

    void Insert(Node* p, int value)

    {

    }

    Question 2:

    Please write a String class with following features:


    正确答案:
     

  • 第6题:

    The road will be blocked if there_______another snow.

    A.is
    B.will be
    C.to be
    D.will have

    答案:A
    解析: