mirror of
https://git.musl-libc.org/git/musl
synced 2025-03-11 05:21:37 +03:00
search: add comments to tsearch_avl.c
This commit is contained in:
parent
d197d6421c
commit
6255c4c6a5
@ -1,6 +1,12 @@
|
||||
#include <stdlib.h>
|
||||
#include <search.h>
|
||||
|
||||
/*
|
||||
avl tree implementation using recursive functions
|
||||
the height of an n node tree is less than 1.44*log2(n+2)-1
|
||||
(so the max recursion depth in case of a tree with 2^32 nodes is 45)
|
||||
*/
|
||||
|
||||
struct node {
|
||||
const void *key;
|
||||
struct node *left;
|
||||
|
Loading…
x
Reference in New Issue
Block a user