Zig basic project - bipartition.
parent
adb9a6e44c
commit
13f7c3a822
|
@ -0,0 +1,2 @@
|
||||||
|
zig-out
|
||||||
|
.zig-cache
|
|
@ -0,0 +1,11 @@
|
||||||
|
const std = @import("std");
|
||||||
|
|
||||||
|
pub fn build(b: *std.Build) void {
|
||||||
|
const exe = b.addExecutable(.{
|
||||||
|
.name = "numbers",
|
||||||
|
.root_source_file = b.path("numbers.zig"),
|
||||||
|
.target = b.host,
|
||||||
|
|
||||||
|
});
|
||||||
|
b.installArtifact(exe);
|
||||||
|
}
|
|
@ -0,0 +1,57 @@
|
||||||
|
const std = @import("std");
|
||||||
|
const print = std.debug.print;
|
||||||
|
const expect = std.testing.expect;
|
||||||
|
|
||||||
|
test "simple partition #1" {
|
||||||
|
var gpa = std.heap.GeneralPurposeAllocator(.{}){};
|
||||||
|
const allocator = gpa.allocator();
|
||||||
|
defer {
|
||||||
|
_ = gpa.deinit();
|
||||||
|
}
|
||||||
|
|
||||||
|
const arr = try allocator.alloc(u64, 3);
|
||||||
|
arr[0] = 1;
|
||||||
|
arr[1] = 3;
|
||||||
|
arr[2] = 5;
|
||||||
|
defer {
|
||||||
|
allocator.free(arr);
|
||||||
|
}
|
||||||
|
const res = bipartition(arr, 0, @as(u64, arr.len-1), 2);
|
||||||
|
std.log.warn("Res {}", .{res});
|
||||||
|
try expect(res == 1);
|
||||||
|
}
|
||||||
|
|
||||||
|
pub fn bipartition(arr: []u64, t1: u64, t2: u64, v: u64) u64 {
|
||||||
|
std.log.warn("Arr called with {}, {}, {}", .{t1, t2, v});
|
||||||
|
var x1:u64 = t1;
|
||||||
|
var x2:u64 = t2;
|
||||||
|
var x:u64 = undefined;
|
||||||
|
|
||||||
|
if (arr.len <= 0) {
|
||||||
|
return x1;
|
||||||
|
}
|
||||||
|
|
||||||
|
if (v < arr[x1]) {
|
||||||
|
return x1;
|
||||||
|
}
|
||||||
|
|
||||||
|
if (v >= arr[t2]) {
|
||||||
|
return t2 + 1;
|
||||||
|
}
|
||||||
|
|
||||||
|
while (x1 < x2 - 1) {
|
||||||
|
std.log.warn("Round {},{}", .{t1, t2});
|
||||||
|
x = (x1 + x2) / 2;
|
||||||
|
if (arr[x] < v) {
|
||||||
|
x1 = x;
|
||||||
|
} else {
|
||||||
|
x2 = x;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
return x2;
|
||||||
|
}
|
||||||
|
|
||||||
|
pub fn main() !void {
|
||||||
|
print("Hello World {}!!!\n", .{1});
|
||||||
|
}
|
Loading…
Reference in New Issue