Archive of posts with category 'Binary Tree'

Count Complete Tree Nodes

According to Wikipedia, every level, except possibly the last, is completely filled in a complete binary tree, and all nodes in the last level are as far left as possible....

Binary Tree Right Side View

Today we will discuss another Binary Tree problem.

Level Order Traversal of Binary Tree

A binary tree is a tree data structure in which each node has at most two children, which are referred to as the left child and the right child. Today...