单项选择题
Which traversal method for a binary tree does the following Pascal code illustrate
procedure traverse(p:pointer);
begin
it p<>nil
then begin
traverse(p↑.left);
process(p);
traverse(p↑.right)
end
end;
A.Inorder
B.Preorder
C.Postorder
D.Reorder
点击查看答案
<上一题
目录
下一题>
热门
试题
单项选择题
What storage scheme does MS-DOS use for storing files on a disk
A.I-nodes
B.a linked list allocation
C.a continuous allocation
D.a linked list with index
点击查看答案
单项选择题
In the following statements about graph operations, which one is NOT correct
A.Spanning tree of a graph may not be unique.
B.Minimum spanning tree of a graph may not be unique.
C.Finding critical path is an operation on directed graph.
D.Finding critical path is an operation on undirected graph.
点击查看答案
相关试题
The universe of hypertext servers t...
When should Frequency Division Multi...
Each host or router on the Interne...
What binary number is encoded with...
There are two common types in page...