Please enable JavaScript.
Coggle requires JavaScript to display documents.
CHAPTER 5 : TREE, MEMBER - Coggle Diagram
CHAPTER 5 : TREE
BINARY SEARCH TREE
search tree
Binary Search Tree is a binary tree in which every node contain only smaller values in its left subtree and only larger values in its right subtree
insert tree
-
-
TERMINOLOGY
-
-
-
-
-
Internal Nodes
a node of a tree that has one or more child nodes, equivalently, one that is not a leaf
-
-
-
-
-
-
-
TREE
Definition : data structures that simulates hierarchical tree structure with root and subtree plus parent and children
Tree have 2 or more children. If there's less than 2 child in parent, it is not tree but it could be binary tree
Example of Tree
-
-