Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
21 changes: 21 additions & 0 deletions Insertion_Sort/Lua/Yonaba/insertion_sort.lua
Original file line number Diff line number Diff line change
@@ -0,0 +1,21 @@
-- Insertion sort algorithm
-- See: http://en.wikipedia.org/wiki/Insertion_sort#Algorithm

-- list: a list to be sorted, in-place
-- comp: (optional) a comparison function
-- defaults to function(a, b) return a < b end
-- returns: the passed-in list, sorted
return function (list, comp)
comp = comp or function(a, b) return a < b end
local n = #list
for i = 2, n do
local x = list[i]
local j = i
while j>1 and not comp(list[j-1],x) do
list[j] = list[j-1]
j = j - 1
end
list[j] = x
end
return list
end
60 changes: 60 additions & 0 deletions Insertion_Sort/Lua/Yonaba/insertion_sort_test.lua
Original file line number Diff line number Diff line change
@@ -0,0 +1,60 @@
-- Tests for insertion_sort.lua
local insertion_sort = require 'insertion_sort'

local total, pass = 0, 0

local function dec(str, len)
return #str < len
and str .. (('.'):rep(len-#str))
or str:sub(1,len)
end

local function run(message, f)
total = total + 1
local ok, err = pcall(f)
if ok then pass = pass + 1 end
local status = ok and 'PASSED' or 'FAILED'
print(('%02d. %68s: %s'):format(total, dec(message,68), status))
end

-- Comparison functions
local function le(a,b) return a <= b end
local function ge(a,b) return a >= b end

-- Checks if list is sorted
function is_sorted(list, comp)
comp = comp or le
for i = 2, #list do
if not comp(list[i-1],list[i]) then return false end
end
return true
end

-- Generates a table of n random values
local function gen(n)
local t = {}
for i = 1, n do t[i] = math.random(n) end
return t
end

math.randomseed(os.time())

run('Empty arrays', function()
local t = {}
assert(is_sorted(insertion_sort({})))
end)

run('Already sorted array', function()
local t = {1, 2, 3, 4, 5}
assert(is_sorted(insertion_sort(t)))
end)

run('Sorting a large array (1e3 values)', function()
local t = gen(1e3)
assert(is_sorted(insertion_sort(t)))
assert(is_sorted(insertion_sort(t, ge), ge))
end)

print(('-'):rep(80))
print(('Total : %02d: Pass: %02d - Failed : %02d - Success: %.2f %%')
:format(total, pass, total-pass, (pass*100/total)))
Original file line number Diff line number Diff line change
Expand Up @@ -30,9 +30,10 @@ end

-- Quicksort function wrapper, to shadow access
-- to left and right bounds
-- list: a list to be ordered
-- list: a list to be ordered, in-place
-- comp: (optional) a comparison function
-- defaults to function(a, b) return a < b end
-- returns: the passed-in list, sorted
return function (list, comp)
comp = comp or function(a, b) return a < b end
return quicksort(list, comp)
Expand Down