data_structures
Data Fields
s_bst Struct Reference

A binary search tree. More...

#include <bst.h>

Data Fields

t_bst_noderoot
 The root of the tree. More...
 
size_t size
 The number of elements in this tree. More...
 
const t_typekey_type
 The type of keys in the tree. More...
 
const t_typeval_type
 The type of values in the ree. More...
 

Detailed Description

A binary search tree.

Definition at line 57 of file bst.h.

Field Documentation

◆ key_type

s_bst::key_type

The type of keys in the tree.

Definition at line 61 of file bst.h.

◆ root

s_bst::root

The root of the tree.

Definition at line 59 of file bst.h.

◆ size

s_bst::size

The number of elements in this tree.

Definition at line 60 of file bst.h.

◆ val_type

s_bst::val_type

The type of values in the ree.

Definition at line 62 of file bst.h.


The documentation for this struct was generated from the following file: