Optimal Binary Search Trees(최적이진탐색트리)
·
Algorithms/Dynamic Programming
Basic ConceptPrerequisite Knowledge: Binary Search Treebinary search tree: A binary tree of items (ordinarily called keys), that come from an ordered set, such thatEach node contain one key.The keys in the right subtree of a given node are greater than or equal to the key in that tree.The keys in the left subtree of a given node are less than or equal to the key in that tree.left subtree: For an..