© 2026 Hashnode
Searching is one of the most common operations in computer science. Whenever we want to find a specific element in a list, array, or dataset, we use a search algorithm. The two most common search algorithms are Linear Search and Binary Search. In thi...

Introduction: Today marks the beginning of my Data Structures and Algorithms (DSA) journey.I started with performance analysis and basic concepts of vectors and linear search in C++.Even though I already know C language, learning DSA in C++ felt surp...

Among the various search algorithms, Linear Search stands out as the most fundamental. In this article, we will delve into the workings of Linear Search and break down its implementation step by step. What is Linear Search? Linear Search is a simple ...

সার্চিং কি? (What is Searching?) আমরা প্রতিদিন অনেক কিছু খুঁজি - মোবাইলে কোন contact, ফেসবুকে কোন friend, কিংবা Gmail inbox এ কোন important mail। Computer Science এ searching বলতে ঠিক এটাই বোঝায় - একটা collection of data থেকে specific কোন informatio...
