-
Notifications
You must be signed in to change notification settings - Fork 13
/
heapsort.lua
48 lines (45 loc) · 1.09 KB
/
heapsort.lua
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
local random, floor = math.random, math.floor
floor = math.ifloor or floor
function heapsort(n, ra)
local j, i, rra
local l = floor(n/2) + 1
-- local l = (n//2) + 1
local ir = n;
while 1 do
if l > 1 then
l = l - 1
rra = ra[l]
else
rra = ra[ir]
ra[ir] = ra[1]
ir = ir - 1
if (ir == 1) then
ra[1] = rra
return
end
end
i = l
j = l * 2
while j <= ir do
if (j < ir) and (ra[j] < ra[j+1]) then
j = j + 1
end
if rra < ra[j] then
ra[i] = ra[j]
i = j
j = j + i
else
j = ir + 1
end
end
ra[i] = rra
end
end
local Num = tonumber((arg and arg[1])) or 4
for i=1,Num do
local N = tonumber((arg and arg[2])) or 10000
local a = {}
for i=1,N do a[i] = random() end
heapsort(N, a)
for i=1,N-1 do assert(a[i] <= a[i+1]) end
end