about summary refs log tree commit diff
path: root/src/sort/insertion.zig
blob: 4aee57a3078437884fdb802e8915ea61a16427ca (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
const std = @import("std");
const mem = std.mem;
const testing = std.testing;

pub fn sort(comptime T: type, arr: []T) void {
    for (1..arr.len) |i| {
        var j = i;
        while (j > 0 and arr[j - 1] > arr[j]) : (j -= 1) {
            mem.swap(T, &arr[j - 1], &arr[j]);
        }
    }
}

test "insertion sort test" {
    var arr = [_]i64{ 20, 3, 5, 1, 30, 4, 2 };
    sort(i64, &arr);
    const expected = [_]i64{ 1, 2, 3, 4, 5, 20, 30 };
    try testing.expectEqualSlices(i64, &expected, &arr);
}