2024-10-24 19:24:54 +01:00
|
|
|
#ifndef _B_TREE_H_
|
|
|
|
|
#define _B_TREE_H_
|
|
|
|
|
|
|
|
|
|
#include "../object.h"
|
|
|
|
|
|
|
|
|
|
#include <blue/core/queue.h>
|
2025-08-09 19:57:42 +01:00
|
|
|
#include <blue/ds/tree.h>
|
2024-10-24 19:24:54 +01:00
|
|
|
|
|
|
|
|
struct b_tree {
|
2025-08-09 19:57:42 +01:00
|
|
|
struct b_dsref t_base;
|
2024-10-24 19:24:54 +01:00
|
|
|
struct b_tree_node *t_root;
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
#endif
|