Binary tree¶
A hierarchical data structure where each node has no more than two children. Python has no built-in implementation, so you need to write your own. Typically, trees with additional properties, which are discussed below, are used.
A hierarchical data structure where each node has no more than two children. Python has no built-in implementation, so you need to write your own. Typically, trees with additional properties, which are discussed below, are used.