Binary Search Tree
Posted by Dustin Boston in Data Structures.
A Binary Search Tree (BST) is a data structure in which each node has at most two children and maintains the property that for every node, the values in its left subtree are less than the node’s value, and the values in its right subtree are greater.
Linked List
Posted by Dustin Boston in Data Structures.
A data structure where each element contains a value and a reference to the next node, supporting efficient insertion and deletion operations.
N-Gram
Posted by Dustin Boston in Data Structures.
The n-gram data structure is a simple container. It is used as a probabilistic model typically used in Natural Language Processing (NLP) to predict sequences of elements such as words or characters. It represents a sequence of \(n\) items from a given dataset, often applied for tasks like language modeling, auto-completion, and text prediction.
Queue
Posted by Dustin Boston in Data Structures.
A linear collection following the First-In-First-Out (FIFO) principle, supporting operations like enqueue and dequeue, useful in task scheduling.
Trie Symbol Table
Posted by Dustin Boston in Data Structures.
The Trie Symbol Table is a data structure designed to efficiently store and retrieve key-value pairs where the keys are strings. It organizes data into a tree-like structure, where each node represents a character, and paths from the root to nodes represent strings.