更多“I worked _____12 last night. Of course, _____then I was really tired.A. till, afterB. at ”相关问题
  • 第1题:

    I()in the company for more than ten years.

    A. work

    B. have worked

    C. worked


    参考答案:B

  • 第2题:

    — Nancy was badly injured in the accident yesterday and she was sent to hospital. — Oh, really? I(). I() visit her.

    Adidn’t know;will go to

    Bdon’t know;will go to

    Cdidn’t know;am going to

    Dhaven’t known;am goingt o


    A

  • 第3题:

    在顺序结构表示的线性表中,删除第i个元素(数组下标为i-1),需要把后面的所有元素都往前挪一位,相应的语句是: for (___________ ) PtrL->Data[j-1]=PtrL->Data[j]; 其中空缺部分的内容应该是

    A.j = i; j< = PtrL->Last; j++

    B.j =PtrL->Last; j>= i; j--

    C.j = i-1; j< = PtrL->Last; j++

    D.j =PtrL->Last; j>= i-1; j--


    O(n)

  • 第4题:

    --I'm going on a trip to Hainan after the exam.
    --Really? ______!

    A. Have a nice time
    B. Congratulations
    C. OK
    D. It's nice of you

    答案:A
    解析:
    句子的意思是:学英语最重要的是要有足够的练习。在名词性从句中,引导词what的意思是"所……的(无范围)",why表示原因,where表示地点,which表示哪一个(有范围)。因此只有A项符合题意。

  • 第5题:

    2、在顺序结构表示的线性表中,删除第i个元素(数组下标为i-1),需要把后面的所有元素都往前挪一位,相应的语句是: for (___________ ) PtrL->Data[j-1]=PtrL->Data[j]; 其中空缺部分的内容应该是

    A.j = i; j< = PtrL->Last; j++

    B.j =PtrL->Last; j>= i; j--

    C.j = i-1; j< = PtrL->Last; j++

    D.j =PtrL->Last; j>= i-1; j--


    O(n)

  • 第6题:

    12、以下算法的功能是在一个非递减的顺序存储线性表中,删除所有值相等的多余元素。时间复杂度为O(n),空间复杂度为O(1)。划线部分应填入的语句是()。 void DelRepeatData(SeqList *L) { i=0; j=1; while(j<=L->last) { if(L->elem[i]==L->elem[j]) ; else { L->elem[i+1]=L->elem[j]; i++; j++; } } L->last=i; }

    A.i++

    B.j++

    C.i--

    D.j--


    ①j ②p->link=q->link;