2.3 algorithms Flashcards

1
Q

2.3.1 algoritms

A

jfrngjrwr

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

4 standard algorithms

A

-linear search
-binary search
bubble-sort
-itteration-sort

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

linear search

A

used on unordered lists . Starts from the first element and compares it to the value u are tying to find. If its a match the index value will be returned. If not the process repeated for the next element…
-suitable for small lists

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

binary search

A

used on a sorted list. first finds data in the middle if it is a match process stops, if not see if its bigger or smaller then value we are looking for then get rid of the unwanted half (divide and conquer) which creates a sublist. process repeats till there is a match.
-suitable for large lists

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

bubble sort

A

Start at the beginning and compare the first item with the second. If they are out of order, swap them. Repeat till whole list is in order

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

insertion sort

A

start at the beginning and check if the value is in the correct position. if it is move on to the next one and if not just insert it into the right position. keep going till you get a sorted list

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

two ways to measure efficiency of algorithms

A

-time complexity: how much time they need to solve a problem
-space complexity: the amount of resources (eg)memory)they require

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

Compare the suitability of different algorithms for a
given task and data set.

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