Skip to main content

4 docs tagged with "Tree"

View all tags

Balanced Binary Tree Checker

Learn how to implement a balanced binary tree checker in Java, with explanations of the algorithm and time complexity analysis.

Balanced Binary Tree Javascript

Learn how to implement a balanced binary tree checker in JavaScript, with explanations of the algorithm and time complexity analysis.

Suffix Tree Algorithm

Construct and search a Suffix Tree efficiently to represent all suffixes of a string for substring searching and pattern matching.

Sum-tree

A Sum Tree is a binary tree where each node's value is equal to the sum of the values of its left and right children, with the property holding true for all nodes in the tree.