Searching Flashcards
What is the primary requirement for searching a list of items?
A target search key
The search algorithm needs a specific key to look for within the list.
What are the two main types of search algorithms?
- Linear search
- Binary search
What does linear search involve?
Comparing each item with the target key until a match is found or the end of the list is reached.
In a linear search, what equality operator is used for primitive types?
==
What method is used to compare objects for equality in Java?
key.equals(array[i])
What is a requirement for using binary search?
The list must be ordered.
How does binary search operate?
By comparing the target key with the middle item and reducing the search space in half.
Which searching algorithm requires a sorted list?
Binary Search
Which searching algorithm is generally more efficient?
Binary Search
Fill in the blank: The _______ search algorithm can search an unordered list.
Linear
Which is the simpler searching algorithm to implement?
Linear Search