Searching algorithms Flashcards

1
Q

How does a linear search work?

A

1) check the first value
2) If it is the desired value, stop
3) Otherwise check the second value
4) keep going until all elements have been checked or the value is found

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

How does a binary search work?

A

1) put the list in order
2) take the middle value
3) compare it to the desired value
a) if it is the desired value, stop
b) If it is larger than the desired value, look at the half of the list to the left of the middle value
c) If it smaller than the desired value, look at the half of the list to the right of the middle value
4) Repeat until you find the desired value

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

What are the pros of a linear search?

A

it works with unsorted lists
it is not affected by changes to the list
it works well for small lists

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

what are the cons of a linear search?

A

It is slower
It is inefficient for large lists

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

What are the pros of a binary search?

A

It is more efficient
It is efficient for large lists

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

What are the cons of a binary search?

A

It does not work with unsorted lists

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