Algorithms_in_C 1.0.0
Set of algorithms implemented in C.
Loading...
Searching...
No Matches
ListItem Struct Reference

Definition for a binary tree node. More...

Collaboration diagram for ListItem:
[legend]

Data Fields

struct TreeNode * node
 
struct ListItemnext
 

Detailed Description

Definition for a binary tree node.

struct TreeNode { int val; struct TreeNode *left; struct TreeNode *right; };


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