在执行递归程序时,通常使用的数据结构是(38)。A.队列(Queue)B.堆栈(Stack)C.树(Tree)D.图(Graph)
在执行递归程序时,通常使用的数据结构是(38)。
A.队列(Queue)
B.堆栈(Stack)
C.树(Tree)
D.图(Graph)
相关考题:
1、下列不属于线性结构的是: Which one of the followings does not belong to linear structure:(There is only one correct answer)A.队列(queue)B.散列表(hash table)C.向量(vector)D.图(graph)
下列不属于线性结构的是: Which one of the followings does not belong to linear structure:(There is only one correct answer)A.队列(queue)B.散列表(hash table)C.向量(vector)D.图(graph)
关于队列(Queue)与堆栈(Stack),下列叙述正确的是()。A.队列和堆栈都属于线性结构,是操作受限的线性表。B.队列的存储采用循环队列结构,目的是提高存储空间的重复利用,减少数据的搬移。C.在队列和堆栈结构中,不能在中间插入和删除元素,只能在一端进行。D.队列是一种先进后出的线性表。E.堆栈是一种先进先出的线性表。