What is binary tree and how is it different then other trees?
Answers
Answered by
4
HEY MATE......
HERE IS UR ANSWER.....❤❤
Binary tree - A data structure in which a record is linked to two successor records, usually referred to as the left branch when greater and the right when less than the previous record.
A general tree is a data structure in that each node can have infinite number of children, A Binary tree is a data structure in that each node has at most two nodes left and right. There is no limit on the degree of node in ageneral tree. Nodes in a binary tree cannot have more than degree 2.
HOPE IT HELPS YOU AND MARK AS BRAINLIEST.........☺☺
HERE IS UR ANSWER.....❤❤
Binary tree - A data structure in which a record is linked to two successor records, usually referred to as the left branch when greater and the right when less than the previous record.
A general tree is a data structure in that each node can have infinite number of children, A Binary tree is a data structure in that each node has at most two nodes left and right. There is no limit on the degree of node in ageneral tree. Nodes in a binary tree cannot have more than degree 2.
HOPE IT HELPS YOU AND MARK AS BRAINLIEST.........☺☺
Answered by
1
Answer:
A binary tree is a rooted tree that is also an ordered tree (a.k.a. plane tree) in which every node has at most two children. A rooted tree naturally imparts a notion of levels (distance from the root), thus for every node a notion of children may be defined as the nodes connected to it a level below.
Similar questions