Science, asked by devyadv9030, 1 year ago

What is binary tree and how is it different then other trees?

Answers

Answered by cutieeee10101
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.........☺☺
Answered by akanksha2614
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