Binary Tree Data Structure

Learn more about Binary Tree in DSA Self Paced Course
Practice Problems on Binary Tree !
Top Quizzes on Binary Tree

What is Binary Tree Data Structure?

Binary Tree is defined as a tree data structure where each node has at most 2 children. Since each element in a binary tree can have only 2 children, we typically name them the left and right child.

Binary Tree Data Structure

Binary Tree Representation


A Binary tree is represented by a pointer to the topmost node (commonly known as the “root”) of the tree. If the tree is empty, then the value of the root is NULL. Each node of a Binary Tree contains the following parts:

  1. Data
  2. Pointer to left child
  3. Pointer to right child

Basic Operation On Binary Tree:

  • Inserting an element.
  • Removing an element.
  • Searching for an element.
  • Traversing the tree.

Auxiliary Operation On Binary Tree:

  • Finding the height of the tree
  • Find the level of a node of the tree
  • Finding the size of the entire tree.

Topic :

Introduction :

Basic Operations on Binary Tree:

Some other important Binary Tree Traversals :

Must solve Standard Problems on Binary Tree Data Structure:

Quick Links :

Recommended:

If you like GeeksforGeeks and would like to contribute, you can also write an article and mail your article to review-team@geeksforgeeks.org. See your article appearing on the GeeksforGeeks main page and help other Geeks. Please write
comments if you find anything incorrect, or you want to share more information about the topic discussed above.


Feeling lost in the world of random DSA topics, wasting time without progress? It's time for a change! Join our DSA course, where we'll guide you on an exciting journey to master DSA efficiently and on schedule.
Ready to dive in? Explore our Free Demo Content and join our DSA course, trusted by over 100,000 geeks!


  • Last Updated : 27 Sep, 2023

Share your thoughts in the comments