मराठी

Trees in Data Structure

Advertisements
  • Introduction to tree 
  • Binary tree
  • Representing binary trees in memory 

Trees

Tree is a non linear data structure. It is used to represent data containing a hierarchical relationship between elements. A binary tree is a special kind of tree. It can be easily maintained in the computer. 

Binary trees 

A binary tree T is defined as a finite set of elements, called nodes, such that  

  1.  T is empty (called the null tree or empty tree) or 
  2.  T contains a distinguished node R, called root of T and the remaining nodes of T form an ordered pair of disjoint binary trees T 1 and T 2 .

An Example: 

The tree T is said to be complete if all its levels, except the last, have maximum number of possible nodes. 

Representing binary trees in memory 

Let T be a binary tree. T can be represented in memory either by link representation or by using array called sequential representation. 

Linked representation 

The linked representation uses three parallel arrays, INFO, LEFT and RIGHT and a pointer variable ROOT. Each node N of T will correspond to a location K such that:  

  1. INFO [K] contains the data at node N. 
  2. LEFT [K] contains the location of left child of node N.
  3. RIGHT [K] contains the location of right child of node N.

Root will contain location of root R of T. 

A sample: 

Sequential representation: 

Here a linear array is used. The root R is stored in TREE [1]. If a node N occupies TREE [K], then its left child is stored in TREE [2 * K] and right child in TREE [2 * K + l]. An example is shown in figure: 

 

If you would like to contribute notes or other learning material, please submit them using the button below.
Advertisements
Share
Notifications

Englishहिंदीमराठी


      Forgot password?
Use app×