LibC: Implement POSIX binary search trees

I used RB tree for this. The implementation is based on the code on
wikipedia about RB trees.
This commit is contained in:
2026-07-20 04:07:23 +03:00
parent 658e74b507
commit 2a3eca5b36
3 changed files with 306 additions and 12 deletions
+1
View File
@@ -32,6 +32,7 @@ set(LIBC_SOURCES
regex.cpp
scanf_impl.cpp
sched.cpp
search.cpp
semaphore.cpp
setjmp.cpp
signal.cpp