Add AVL balancing

This commit is contained in:
2026-07-28 14:12:49 +01:00
parent 7503561c40
commit 9ac1407907
5 changed files with 161 additions and 23 deletions
+1
View File
@@ -15,6 +15,7 @@ extern "C" {
#include <unicode_width.h>
}
#include <algorithm>
#include <assert.h>
#include <atomic>
#include <cctype>
#include <chrono>
+17 -4
View File
@@ -12,10 +12,14 @@ struct Shard {
uint32_t length;
uint32_t lines;
uint8_t height;
std::atomic_uint32_t refs;
Shard(ShardKind kind, uint32_t length, uint32_t lines)
: kind(kind), length(length), lines(lines), refs(0) {};
Shard(ShardKind kind, uint32_t length, uint32_t lines, uint8_t height)
: kind(kind), length(length), lines(lines), height(height), refs(0) {};
virtual ~Shard() = default;
};
struct ShardPtr {
@@ -53,7 +57,12 @@ struct Branch : Shard {
ShardPtr right;
Branch(Shard *l, Shard *r)
: Shard(ShardKind::Branch, l->length + r->length, l->lines + r->lines),
: Shard(
ShardKind::Branch,
l->length + r->length,
l->lines + r->lines,
1 + std::max(l->height, r->height)
),
left(l), right(r) {};
};
@@ -63,10 +72,14 @@ struct Petal : Shard {
uint32_t pos;
Petal(uint32_t length, uint32_t lines, Buffer *source, uint32_t pos)
: Shard(ShardKind::Petal, length, lines), source(source), pos(pos) {};
: Shard(ShardKind::Petal, length, lines, 1),
source(source), pos(pos) {};
};
std::pair<ShardPtr, ShardPtr> split_shard(Shard *n, uint32_t offset);
ShardPtr concat_shard(ShardPtr left, ShardPtr right);
ShardPtr merge(Shard *a, Shard *b);
ShardPtr merge_leaves(Shard *a, Shard *b);
ShardPtr append_leaf(Shard *root, Shard *leaf);
void print_shard(const Shard *shard, int depth = 0);
+7 -4
View File
@@ -26,6 +26,10 @@ struct Vase {
);
}
uint32_t length() {
return root.ptr->length;
}
void insert(uint32_t offset, const char *data, uint32_t len) {
uint32_t lines = 0;
uint32_t pos = append.append(data, len, &lines);
@@ -34,9 +38,8 @@ struct Vase {
auto [left, right] = split_shard(root.ptr, offset);
root = concat_shard(
concat_shard(left, inserted),
right
);
left = append_leaf(left.ptr, inserted.ptr);
root = concat_shard(left, right);
}
};