Step 1: Create root node with value 1
1 (root) -> left: null, right: null
Why: Start with the root node as the base of the tree
Step 2: Create node with value 2 and link as left child of root
1 -> left: 2, right: null
2 -> left: null, right: null
Why: Add left child to root to build left subtree
Step 3: Create node with value 3 and link as right child of root
1 -> left: 2, right: 3
2 -> left: null, right: null
3 -> left: null, right: null
Why: Add right child to root to complete root's children
Step 4: Create node with value 4 and link as left child of node 2
1 -> left: 2, right: 3
2 -> left: 4, right: null
3 -> left: null, right: null
4 -> left: null, right: null
Why: Add left child to node 2 to build left subtree further
Step 5: Create node with value 5 and link as right child of node 2
1 -> left: 2, right: 3
2 -> left: 4, right: 5
3 -> left: null, right: null
4 -> left: null, right: null
5 -> left: null, right: null
Why: Add right child to node 2 to complete its children
Result: 1 -> left: 2, right: 3
2 -> left: 4, right: 5
3 -> left: null, right: null
4 -> left: null, right: null
5 -> left: null, right: null