Searching Flashcards

1
Q

What is the primary requirement for searching a list of items?

A

A target search key

The search algorithm needs a specific key to look for within the list.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
2
Q

What are the two main types of search algorithms?

A
  • Linear search
  • Binary search
How well did you know this?
1
Not at all
2
3
4
5
Perfectly
3
Q

What does linear search involve?

A

Comparing each item with the target key until a match is found or the end of the list is reached.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
4
Q

In a linear search, what equality operator is used for primitive types?

A

==

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
5
Q

What method is used to compare objects for equality in Java?

A

key.equals(array[i])

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
6
Q

What is a requirement for using binary search?

A

The list must be ordered.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
7
Q

How does binary search operate?

A

By comparing the target key with the middle item and reducing the search space in half.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
8
Q

Which searching algorithm requires a sorted list?

A

Binary Search

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
9
Q

Which searching algorithm is generally more efficient?

A

Binary Search

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
10
Q

Fill in the blank: The _______ search algorithm can search an unordered list.

A

Linear

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
11
Q

Which is the simpler searching algorithm to implement?

A

Linear Search

How well did you know this?
1
Not at all
2
3
4
5
Perfectly