#data-structures
Read more stories on Hashnode
Articles with this tag
Set Interface When working with collections in Java, you'll often come across scenarios where you need to manage a group of elements with unique...
A queue is a fundamental data structure in computer science that follows the First-In-First-Out (FIFO) principle. It is an abstract data type that...
A stack is a fundamental data structure in computer science that follows the Last-In-First-Out (LIFO) principle. It is an abstract data type that...
Hashing search, also known as hash-based search or hash table search, is a search algorithm that uses a data structure called a hash table to...
Linear search is a simple searching algorithm that sequentially checks each element in a list or array until a match is found or the end of the list...
Binary search is an efficient algorithm used to locate a specific value within a sorted collection of elements. It follows a divide-and-conquer...