-
Notifications
You must be signed in to change notification settings - Fork 1
Elemental Strucutres
João Medeiros edited this page May 23, 2023
·
2 revisions
typedef struct list_node
{
int info;
struct list_node *next;
} list_node_type;typedef struct list_node
{
struct list_node *prev;
int info;
struct list_node *next;
} list_node_type;typedef struct tree_node
{
int info;
struct tree_node *lchild;
struct tree_node *rchild;
} tree_node_type;typedef struct tree_node
{
struct tree_node *parent;
int info;
unsigned int height;
struct tree_node *lchild;
struct tree_node *rchild;
} tree_node_type;