Featured
-
Best Practices used in Game Development
Writing simple games in HTML5 is easy, but you nee
by kavya.gupta -
Why eBooks Are Changing Reader's View?
An electronic book is commonly known as eBook or D
by manoj.rawat -
Do clones make sense?
“I need a website similar to Facebook with all t
by ankur.sharma
Tags
Linear Search Alogrithm
You all will agree to this that linear search is the most simple search algorithm we have read among all other algorithms. Right!?! In this type of search , every item in a list is checked one by one, i.e, a sequential search is made over all ite...
Binary Search in DSA(Data Structure and Algorithms)
Binary search is simple and fast search algorithm which works on the principle of divide and conquer.
It will work properly when the data collected is in sorted form.
It is having run-time complexity of (log n).
This searching algorithm ...
Linear Search in DSA(Data Structure and Algorithms)
Linear search is simple search algorithm in which a sequential searching is done over all the items in a list. Every items are checked and if any match is found then that item is returned otherwise search will be continuued till the end of the...