What Does Ternary Tree Mean?

In computer science, a ternary tree is a type of tree data structure where each node can have up to three derivative nodes. This is in contrast to a binary tree, where each node can have either one or two derivative nodes.

Techopedia Explains Ternary Tree

In a tree data structure, algorithm experts often use the names “parent” and “child” nodes to describe elements of the tree that derive from each other. In a ternary tree, the parent node can have up to three child nodes, which are often labeled as the “left,” “middle” and “right” node, respectively. Certain types of metadata may reside in these derivative nodes.