排序(树)

Description

输入n(<=100000),由小到大输出

Input


n个数

Output

由小到大输出

Sample Input

 


3 2 1 4 5

 

Sample Output

 

1 2 3 4 5


解题思路:先读入数据,每读入一个数,就对堆进行排序,然后输出即可。


程序:
const
  maxn=100000;
var
  a:array[0..maxn]of longint;
  n,i:longint;

procedure change(i,j:longint);
  var
    c:longint;
  begin
    c:=a[i];
    a[i]:=a[j];
    a[j]:=c;
end;

procedure up(i:longint);
  var
    tip:longint;
  begin
    if i=1 then exit;
    tip:=i div 2;
    if a[tip]>a[i] then begin change(i,tip); up(tip); end;
end;

procedure down(i:longint);
  var
    tip:longint;
  begin
    if i*2>n then exit;
    tip:=i*2;
    if (tip+1<=n) and (a[tip]>a[tip+1]) then inc(tip);
    if a[i]>a[tip] then begin change(i,tip); down(tip); end;
end;

begin
  readln(n);
  for i:=1 to n do
    begin
      read(a[i]);
      up(i);
    end;
  for i:=1 to n do
    begin
      write(a[1],' ');
      change(1,n);
      dec(n);
      down(1);
    end;
end.


版权属于: Chris
原文地址: http://blog.sina.com.cn/s/blog_83ac6af80102v0nt.html
转载时必须以链接形式注明原始出处及本声明。
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值