Wednesday 14 July 2010

Sequential Search


We should only use the sequential search on small lists that aren’t searched very often.
The sequential search algorithm begins searching for the target at the first element in an array and continues until (1) it finds the target or (2) it reaches the end of the list without finding the target.


You may like the following posts:
Back to Data Structures

No comments:

Post a Comment