data_structures
Data Fields
s_bst_node Struct Reference

A node in a binary search tree. More...

#include <bst.h>

Data Fields

void * key
 The key. More...
 
void * val
 The value. More...
 
struct s_bst_nodeleft
 The left child. More...
 
struct s_bst_noderight
 The right child. More...
 

Detailed Description

A node in a binary search tree.

Definition at line 36 of file bst.h.

Field Documentation

◆ key

s_bst_node::key

The key.

Definition at line 38 of file bst.h.

◆ left

s_bst_node::left

The left child.

Definition at line 40 of file bst.h.

◆ right

s_bst_node::right

The right child.

Definition at line 41 of file bst.h.

◆ val

s_bst_node::val

The value.

Definition at line 39 of file bst.h.


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