What does Search Algorithm mean in Computer Science ?
Search algorithms are one of the important topics for computer science. As the name of the search algorithms can be understood, it is a collection of algorithms used to search for a particular data on a data structure. This data structure can be a list, array or graph. Different search algorithms have been developed for specific situations, and they all have different advantages and different uptime. In general, if you are searching on a list or series, there are two main categories. One of them is Sequential Search, and the other is Interval Search. Under these, different algorithms have been developed. Two of the simplest and straightforward are Linear Search and Binary Search.