SLR 25/ Algorithms Flashcards

1
Q

Explain Bubble Sort

A

Repeatedly steps through a list, comparing each pair of adjacent items and swapping them if they are in the wrong order.

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

How might Bubble Sort be used

A

Rarely used, as it is so simple. Typically used to introduce the concept of a sorting algorithm to computer science students.

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

Explain Insertion Sort

A

Builds the final, sorted array or list one item at time. It is much less efficient on large lists than more advanced algorithms such as quicksort, heapsort or merge sort.

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

How might Insertion Sort be used

A

Useful for sorting short lists, larger lists that are almost sorted or small sub-lists.

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

Explain Binary Search

A

Only works if records are in sequence. It involves accessing the middle record in the file and determining if the target record has been found or, if not, if it is before or after the middle record in the sequence. This process is repeated on the part of the file where the target record is expected to be until it is found.

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

How might Binary Search be used

A

Used to maintain and search database indexes, quickly search a binary tree of data items, or construct and then search syntax trees for compilers. It can also be used for implementing routing in a router, data compression code and much more.

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

Explain Linear Search

A

Involves examining each entry in turn until the target is found or the end of the file is reached. Unless the file is in some useful order, a serial search will need to be used.

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

How might Linear Search be used

A

One of the most basic search algorithms. As such, it is rarely used beyond the basics of teaching. It can be useful for searching small lists. It does have one advantage over binary searches – the sorting of data items is not required before searching begins.

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