answersLogoWhite

0

you do anything with binary element that is traversing. insertion,deletion, accesing anything.............

User Avatar

Wiki User

13y ago

What else can I help you with?

Related Questions

What is the process of traversing a binary tree level by level, starting from the root node, known as?

The process of traversing a binary tree level by level, starting from the root node, is known as breadth-first search (BFS).


What is meant by left skewed binary tree?

a binary tree with only left sub trees is called as left skewed binary tree


I have a C plus plus project Visual binary search tree showing traversing graphically . . Can someone explain what it means?

It means you have to represent the tree graphically, much like a family tree, such that when traversing the tree you highlight the currently active node in some way.


What is meant by right skewed binary tree?

a binary tree with right sub trees only


What is an expression tree?

An expression tree is a binary tree used to represent expressions in a structured format, where each internal node corresponds to an operator (such as +, -, *, /) and each leaf node represents an operand (like variables or constants). The tree structure allows for the hierarchical organization of operations, making it easier to evaluate or simplify expressions systematically. By traversing the tree, one can perform operations in the correct order according to operator precedence. Expression trees are commonly used in compilers and calculators to parse and evaluate mathematical expressions.


What is meant by binary tree?

there is no shortcut for this anwer so in the related links box below I posted the wikipedia binary tree article. Check it out.


How do you convert expression to binary tree?

To convert an expression to a binary tree, you can use the Shunting Yard algorithm to first convert the expression from infix to postfix notation (Reverse Polish Notation). Then, iterate through the postfix expression, using a stack to create nodes for each operand and operator. For each operator, pop the required number of operands from the stack, create a new node for the operator, and link the operands as its children. Finally, push the new node back onto the stack until the expression is fully processed, resulting in a binary tree representing the expression.


What is the process of traversing a binary tree in a depth-first manner using the depth-first search algorithm?

Traversing a binary tree in a depth-first manner using the depth-first search algorithm involves visiting each node's children before moving on to the next level. This is done by starting at the root node, then recursively visiting the left child, then the right child, and continuing this pattern until all nodes have been visited.


How many types of binary tree?

A binary tree is type of tree with finite number of elements and is divided into three main parts. the first part is called root of the tree and itself binary tree which exists towards left and right of the tree. There are a no. of binary trees and these are as follows : 1) rooted binary tree 2) full binary tree 3) perfect binary tree 4) complete binary tree 5) balanced binary tree 6) rooted complete binary tree


What is meant by tree based parity check?

It is one of the type of parity checking methods. when the binary digits are formated as like the binary tree .Then calculate the parity from the root to each leaf node from left to right.


Copy of binary tree?

Is another binary tree.


Are binary tree and binary tree same?

Yes.