Skip to main content

4 docs tagged with "search"

View all tags

Breadth-First Search (BFS)

A complete guide to Breadth-First Search (BFS) algorithm with explanations, use cases, and implementations in Python, Java, C++, and JavaScript.

Depth-First Search (DFS)

A complete guide to Depth-First Search (DFS) algorithm with explanations, use cases, and implementations in Python, Java, C++, and JavaScript.

Search in a Binary Search Tree

This blog post covers how to search for a value in a Binary Search Tree (BST) in C++, along with explanations and code examples.

Search in Hash Table

Search involves retrieving the value associated with a given key in the hash table.