Concept Flow - Binary Tree Node Structure
Create new node
Assign data value
Set left child pointer to nil
Set right child pointer to nil
Node ready for linking in tree
This flow shows how a binary tree node is created with data and two child pointers initialized to nil.