Follow

Translate

Tuesday, March 15, 2016

Traversing Binary Tree

Traversing Binary Tree: There are three standard ways of traversing a binary tree T with root R. These three algorithms, called preorder, inorder and postorder.


             
                (1)      Process the root R.
          (2)   Traverse the left subtree of R in preorder.
          (3)   Traverse the right subtree of R in preorder


Inorder:
             
                 (1)       Traverse the left subtree of R in inorder.
           (2)   Process the root R.
           (3)    Traverse the right subtree of R in inorder




             
                (1)        Traverse the left subtree of R in postorder.
           (2)   Traverse the right subtree of R in postorder.
           (3)   Process the root R.
           



If You want to learn about the technology, computer science & engineering, web programming, freelancing, earning please click here :CSE SOLVE

Related Posts:

  • Queue What is Queue? Queue: A queue, also called a first-in first-out(FIFO) system, is a linear list in which deletions can take place only at one end of the list, the "front" of the list, and insertions can take place only at th… Read More
  • Lesson One Data Stucture What is Data Structures? Data Structure: Data may be organized on many different ways; The logical or mathematical model of a particular organization of data is called a data structure. If You want to learn about the techn… Read More
  • Searching A LINK LIST LIST Is Sorted:   Algorithm:  SRCHSL(INFO, LINK, START, ITEM, LOC) LIST is a Sorted list in memory. This algorithm finds the location LOC of the node where ITEM first appears in LIST, or set… Read More
  • Stack Lesson One What is mean Stack? Stack: A Stack, also called a last-in-first-out(LIFO) system, is a linear list in which insertions and deletions can take place only at one end, called the top If You want to learn about the technology,… Read More
  • Data Structure Operations The following four operations play a major role in this text: 1.Traversing: Accessing each record exactly once so that certain items in the record may be processed. 2.Searching: Finding the location of the record with… Read More

0 comments:

Post a Comment