Which one of the following describes the similarity between the stack and the queue?(30)
A.logical characteristics
B.physical characteristics
C.operation method
D.element type
第1题:
在执行递归程序时,通常使用的数据结构是(38)。
A.队列(Queue)
B.堆栈(Stack)
C.树(Tree)
D.图(Graph)
第2题:
In some countries, _____ is called "equality" does not really mean equal rights for all people.
(A) which (C) that
(B) what (D) one
选B
这句话貌似定语从句。而实际上,前面的部分就是状语,后半句与countries没有修饰关系(因为1.后半句缺主语,但空格的位置用countries不能替换,否则语义不对。2.后半句不缺宾语。)所以后半句的()is called equality作主语.是主语从句。
在选项中,只有what引导主语从句。
意思:在一些国家里,所谓平等,并不意味着所有公民的平等权利
第3题:
第4题:
在执行递归过程时,通常使用的数据结构是(39)。
A.堆栈(stack)
B.队列(queue)
C.图(graph)
D.树(tree)
第5题:
The word "scarcity" in the last paragraph may most probably mean______.
A. lack
B. mistake
C. fun
D. similarity
49.答案为A 比较四个选项,只有A“缺乏”是最接近的词义。
第6题:
循环队列Queue(最多元素为MAX)判断队列为空的条件是()。 A. Queue->front= =NULL; B. Queue->rear= =NULL; C. Queue->front= = Queue->rear; D. Queue= =NULL;