单选题 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
【答案解析】