BTree creat/destroy node.

master
Tomasz Polgrabia 2025-02-01 11:36:28 +01:00
parent 934db013a2
commit c6572f1df5
1 changed files with 25 additions and 40 deletions

View File

@ -2,13 +2,10 @@ 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();
}
var gpa = std.heap.GeneralPurposeAllocator(.{}){};
const allocator = gpa.allocator();
test "simple partition #1" {
const arr = try allocator.alloc(u64, 3);
arr[0] = 1;
arr[1] = 3;
@ -22,12 +19,6 @@ test "simple partition #1" {
}
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;
@ -42,12 +33,6 @@ test "simple partition #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;
@ -62,12 +47,6 @@ test "simple partition #3" {
}
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;
@ -82,12 +61,6 @@ test "simple partition #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;
@ -138,6 +111,19 @@ const BTree = struct {
children: []?BTree,
};
pub fn BTree_Create(n: u64) !*BTree {
var q = try allocator.create(BTree);
q.values = try allocator.alloc(u64, n);
q.children = try allocator.alloc(?BTree, n + 1);
return q;
}
pub fn BTree_Destroy(q: *BTree) !void {
allocator.free(q.values);
allocator.free(q.children);
allocator.destroy(q);
}
pub fn BTree_Add(q: *BTree, v: u64) *BTree {
if (q.n <= q.values.len) {
const idx = bipartition(q.values, 0, q.n, v);
@ -156,14 +142,13 @@ pub fn BTree_Add(q: *BTree, v: u64) *BTree {
}
pub fn main() !void {
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});
var q = try BTree_Create(4);
q.n = 1;
print("Hello World {}!!!\n", .{2});
try BTree_Destroy(q);
defer {
_ = gpa.deinit();
}
}