AlgoVizzzzzzzzz
HomeDSA Explorer

Tree Data Structures

Visualize hierarchical data structures.

Binary Heaps

Priority queue implementation using arrays (Min/Max Heap).

Binary Search Tree (BST)

Ordered binary tree allowing fast search, insert, and delete operations.

AVL Tree

Self-balancing BST that maintains O(log n) height.

Segment Tree

Tree data structure for storing intervals or segments.

Fenwick Tree (BIT)

Data structure that can efficiently update elements and calculate prefix sums.