Algorithms_in_C  1.0.0
Set of algorithms implemented in C.
BSTIterator Struct Reference

Definition for a binary tree node. More...

Data Fields

int * values
 
int CurrentIndex
 
int NumberOfNodes
 

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: