answersLogoWhite

0


Best Answer

no

User Avatar

Wiki User

13y ago
This answer is:
User Avatar

Add your answer:

Earn +20 pts
Q: In binary tree is it necessary that a left child to the left of parent is less than the parent?
Write your answer...
Submit
Still have questions?
magnify glass
imp
Continue Learning about Engineering

How would you describe the structure of a btree?

A binary tree can be empty, or consist of three parts: a 'value' (any type), and to binary trees, called as 'left child' and 'right child'


Number of all possible binary trees with 2 nodes is?

Two: 1. root and left child 2. root and right child


What is meant by left skewed binary tree?

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


What is the difference between extended binary tree and a binary search tree?

A strictly binary tree is one where every node other than the leaves has exactly 2 child nodes. Such trees are also known as 2-trees or full binary trees. An extended binary tree is a tree that has been transformed into a full binary tree. This transformation is achieved by inserting special "external" nodes such that every "internal" node has exactly two children.


What is the difference between a binary tree and a complete binary tree?

Let's start with graphs. A graph is a collection of nodes and edges. If you drew a bunch of dots on paper and drew lines between them arbitrarily, you'd have drawn a graph. A directed acyclic graph is a graph with some restrictions: all the edges are directed (point from one node to another, but not both ways) and the edges don't form cycles (you can't go around in circles forever). A tree, in turn, is a directed acyclic graph with the condition that every node is accessible from a single root. This means that every node has a "parent" node and 0 or more "child" nodes, except for the root node which has no parent. A binary tree is a tree with one more restriction: no node may have more than 2 children. More specific than binary trees are balanced binary trees, and more specific than that, heaps. A binary tree can be empty ..whereas the general tree cannot be empty

Related questions

What is an almost complete binary tree?

An almost complete binary tree is a tree in which each node that has a right child also has a left child. Having a left child does not require a node to have a right child. Stated alternately, an almost complete binary tree is a tree where for a right child, there is always a left child, but for a left child there may not be a right child.The number of nodes in a binary tree can be found using this formula: n = 2^h Where n is the amount of nodes in the tree, and h is the height of the tree.


Can you be a foster parent for a child left to you in a will?

First of all can a child never be left to you without a judge having a say. The will is just a request form the parent. You can seek for approval for being the child's foster parent, of course. Then it's up to the socialworkers.


explain the process of converting tree to binary tree with example?

A binary tree is a type of tree data structure in which each node has at most two children. To convert a tree to a binary tree, we can follow these steps: Choose a root node for the binary tree. This will be the node at the top of the tree, and all other nodes will be connected to it. For each child node of the root node, add it as a left or right child of the root node, depending on its position relative to the root node. For each child node of the root node, repeat step 2 for its child nodes, adding them as left or right children of the appropriate parent node.


How can a binary tree be represented in a computer memory?

A binary tree is a tree that has at most two child node. It contain a data field, a pointer to the left and a pointer to the right child.


How would you describe the structure of a btree?

A binary tree can be empty, or consist of three parts: a 'value' (any type), and to binary trees, called as 'left child' and 'right child'


Can a custodial parent move out of state and leave he child behind with someone other than a parent?

Not without the consent of the non-custodial parent ! The other parent has a right to know who their child has been left with (and perhaps would take the child themselves as a better guardian).


What if parent did't exist ex if the parent like mother or father sent their child before the parent mother was pregnant with them and never was pregnant and was left alone with her own grandchild?

yup that can happen by time travle. if the female was left alone with her own grandchild & never was pregnant with her child & the futune child become a parent & sent their child in the past before the parent mother was pregnant & the parent give their child to their mother before she become pregnant with them & than the parent mother never become pregnant with them & she was left alone with her non-exist child their child witch it is her grandchild & she become a grandmother with out giving birth to her child that did't exist at that time before she did't get pregnant & die never give birth to non-exist child who the grandchild parent never exist in time & it was just grandchild & the grandmother.


Number of all possible binary trees with 2 nodes is?

Two: 1. root and left child 2. root and right child


What do you mean by extended binary treeExplain with an example?

In computer science, a binary tree is a tree data structure in which each node has at most two child nodes, usually distinguished as "left" and "right". Nodes with children are parent nodes, and child nodes may contain references to their parents. Outside the tree, there is often a reference to the "root" node (the ancestor of all nodes), if it exists. Any node in the data structure can be reached by starting at root node and repeatedly following references to either the left or right child.


Is it abandonment if a mother doesn't contact her daughter for over 9 months?

12 months with no contact whatsoever (including child support payments)


Does the non custodial parent have to be present the entire vistation period or can the child be left with his family?

The child can be left with the family, unless otherwise states in the court papers.


What is meant by left skewed binary tree?

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