C Fundamentals
Algorithms · data structures · cryptography · systems — pure C11, zero deps
Loading...
Searching...
No Matches
bst_node Struct Reference

Public Attributes

struct bst_nodeleft
 
struct bst_noderight
 
int value
 

Detailed Description

Definition at line 12 of file bst.c.

Member Data Documentation

◆ left

struct bst_node* bst_node::left

Definition at line 14 of file bst.c.

Referenced by bst_contains(), bst_insert(), bst_min(), destroy_subtree(), in_order_recursive(), and make_node().

◆ right

struct bst_node* bst_node::right

Definition at line 15 of file bst.c.

Referenced by bst_contains(), bst_insert(), bst_max(), destroy_subtree(), in_order_recursive(), and make_node().

◆ value

int bst_node::value

Definition at line 13 of file bst.c.

Referenced by bst_contains(), bst_insert(), bst_max(), bst_min(), in_order_recursive(), and make_node().


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