API Reference¶
Complete API documentation for all data structures in py-ds-academy.
Browse individual data structure APIs using the navigation menu on the left, or see the overview below.
Linear Structures¶
- Stack - Last-In-First-Out (LIFO) data structure
- Queue - First-In-First-Out (FIFO) data structure
- Singly Linked List - Linked list with forward links only
- Doubly Linked List - Linked list with forward and backward links
Trees¶
- Binary Tree - Tree where each node has at most two children
- Binary Search Tree - Ordered binary tree for efficient searching
- AVL Tree - Self-balancing binary search tree