2025-01-31 10:46:43 +00:00
|
|
|
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);
|
|
|
|
}
|
2025-01-31 23:55:11 +00:00
|
|
|
const res = bipartition(arr, 0, @as(u64, arr.len - 1), 2);
|
2025-02-01 00:02:19 +00:00
|
|
|
// std.log.warn("Res {}", .{res});
|
2025-01-31 10:46:43 +00:00
|
|
|
try expect(res == 1);
|
|
|
|
}
|
|
|
|
|
2025-02-01 00:02:19 +00:00
|
|
|
test "simple partition #2" {
|
|
|
|
var gpa = std.heap.GeneralPurposeAllocator(.{}){};
|
|
|
|
const allocator = gpa.allocator();
|
|
|
|
defer {
|
|
|
|
_ = gpa.deinit();
|
|
|
|
}
|
|
|
|
|
|
|
|
const arr = try allocator.alloc(u64, 4);
|
|
|
|
arr[0] = 1;
|
|
|
|
arr[1] = 3;
|
|
|
|
arr[2] = 5;
|
|
|
|
arr[3] = 6;
|
|
|
|
defer {
|
|
|
|
allocator.free(arr);
|
|
|
|
}
|
|
|
|
const res = bipartition(arr, 0, @as(u64, arr.len - 1), 4);
|
|
|
|
// std.log.warn("Res {}", .{res});
|
|
|
|
try expect(res == 2);
|
|
|
|
}
|
|
|
|
|
|
|
|
test "simple partition #3" {
|
|
|
|
var gpa = std.heap.GeneralPurposeAllocator(.{}){};
|
|
|
|
const allocator = gpa.allocator();
|
|
|
|
defer {
|
|
|
|
_ = gpa.deinit();
|
|
|
|
}
|
|
|
|
|
|
|
|
const arr = try allocator.alloc(u64, 4);
|
|
|
|
arr[0] = 1;
|
|
|
|
arr[1] = 3;
|
|
|
|
arr[2] = 5;
|
|
|
|
arr[3] = 6;
|
|
|
|
defer {
|
|
|
|
allocator.free(arr);
|
|
|
|
}
|
|
|
|
const res = bipartition(arr, 0, @as(u64, arr.len - 1), 0);
|
|
|
|
// std.log.warn("Res {}", .{res});
|
|
|
|
try expect(res == 0);
|
|
|
|
}
|
|
|
|
|
|
|
|
test "simple partition #4" {
|
|
|
|
var gpa = std.heap.GeneralPurposeAllocator(.{}){};
|
|
|
|
const allocator = gpa.allocator();
|
|
|
|
defer {
|
|
|
|
_ = gpa.deinit();
|
|
|
|
}
|
|
|
|
|
|
|
|
const arr = try allocator.alloc(u64, 4);
|
|
|
|
arr[0] = 1;
|
|
|
|
arr[1] = 3;
|
|
|
|
arr[2] = 5;
|
|
|
|
arr[3] = 6;
|
|
|
|
defer {
|
|
|
|
allocator.free(arr);
|
|
|
|
}
|
|
|
|
const res = bipartition(arr, 0, @as(u64, arr.len - 1), 7);
|
|
|
|
// std.log.warn("Res {}", .{res});
|
|
|
|
try expect(res == 4);
|
|
|
|
}
|
|
|
|
|
|
|
|
test "simple partition #5" {
|
|
|
|
var gpa = std.heap.GeneralPurposeAllocator(.{}){};
|
|
|
|
const allocator = gpa.allocator();
|
|
|
|
defer {
|
|
|
|
_ = gpa.deinit();
|
|
|
|
}
|
|
|
|
|
|
|
|
const arr = try allocator.alloc(u64, 4);
|
|
|
|
arr[0] = 1;
|
|
|
|
arr[1] = 3;
|
|
|
|
arr[2] = 5;
|
|
|
|
arr[3] = 6;
|
|
|
|
defer {
|
|
|
|
allocator.free(arr);
|
|
|
|
}
|
|
|
|
const res = bipartition(arr, 0, @as(u64, arr.len - 1), 6);
|
|
|
|
// std.log.warn("Res {}", .{res});
|
|
|
|
try expect(res == 3);
|
|
|
|
}
|
|
|
|
|
2025-01-31 10:46:43 +00:00
|
|
|
pub fn bipartition(arr: []u64, t1: u64, t2: u64, v: u64) u64 {
|
2025-02-01 00:02:19 +00:00
|
|
|
// std.log.warn("Arr called with {}, {}, {}", .{ t1, t2, v });
|
2025-01-31 23:55:11 +00:00
|
|
|
var x1: u64 = t1;
|
|
|
|
var x2: u64 = t2;
|
|
|
|
var x: u64 = undefined;
|
2025-01-31 10:46:43 +00:00
|
|
|
|
|
|
|
if (arr.len <= 0) {
|
|
|
|
return x1;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (v < arr[x1]) {
|
|
|
|
return x1;
|
|
|
|
}
|
|
|
|
|
2025-02-01 00:02:19 +00:00
|
|
|
if (v > arr[t2]) {
|
2025-01-31 10:46:43 +00:00
|
|
|
return t2 + 1;
|
|
|
|
}
|
|
|
|
|
|
|
|
while (x1 < x2 - 1) {
|
2025-02-01 00:02:19 +00:00
|
|
|
// std.log.warn("Round {},{}", .{ t1, t2 });
|
2025-01-31 10:46:43 +00:00
|
|
|
x = (x1 + x2) / 2;
|
|
|
|
if (arr[x] < v) {
|
|
|
|
x1 = x;
|
|
|
|
} else {
|
|
|
|
x2 = x;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
return x2;
|
|
|
|
}
|
|
|
|
|
2025-02-01 00:41:26 +00:00
|
|
|
const BTree = struct {
|
|
|
|
n: u64,
|
|
|
|
values: []u64,
|
|
|
|
children: []?BTree,
|
|
|
|
};
|
|
|
|
|
|
|
|
pub fn BTree_Add(q: *BTree, v: u64) *BTree {
|
|
|
|
if (q.n <= q.values.len) {
|
|
|
|
const idx = bipartition(q.values, 0, q.n, v);
|
|
|
|
std.log.warn("Idx {}", idx);
|
|
|
|
const i: u64 = q.n;
|
|
|
|
while (i >= idx) {
|
|
|
|
q.values[idx + 1] = q.values[idx];
|
|
|
|
// TODO add here moving children pointers
|
|
|
|
idx -= 1;
|
|
|
|
}
|
|
|
|
q.n += 1;
|
|
|
|
q.values[idx] = v;
|
|
|
|
// TODO insert here element
|
|
|
|
}
|
|
|
|
return q;
|
|
|
|
}
|
|
|
|
|
2025-01-31 10:46:43 +00:00
|
|
|
pub fn main() !void {
|
2025-02-01 00:41:26 +00:00
|
|
|
const numbers = [_]u64{ 1, 2, 3 };
|
|
|
|
const numbers_sl: []const u64 = &numbers;
|
|
|
|
const children = [_]?BTree{ null, null, null, null };
|
|
|
|
const q = BTree{
|
|
|
|
.n = 0,
|
|
|
|
.values = numbers_sl,
|
|
|
|
.children = &children,
|
|
|
|
};
|
|
|
|
BTree_Add(q, 4);
|
|
|
|
print("Hello World {}!!!\n", .{q.values});
|
2025-01-31 10:46:43 +00:00
|
|
|
}
|