不是VIP会员,不能显示答案

题目解答

题目:
proceduresort2(i,n:integer);
var j :integer ;
begin
if i= n then write(a[n])
else for j:=i+1to n do
begin
if a[j] < a[i] then swap (i,j)
write(a[i]);
sort2(i+1,n)
end
end.
调用该过程的语句为sort2(1,n),比较运算的次数为:__________

输出:n(n-1)/2
考点:
分析:
解答:
评论:
老师: