2.3 algorithms Flashcards
2.3.1 algoritms
jfrngjrwr
4 standard algorithms
-linear search
-binary search
bubble-sort
-itteration-sort
linear search
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
binary search
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
bubble sort
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
insertion sort
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
two ways to measure efficiency of algorithms
-time complexity: how much time they need to solve a problem
-space complexity: the amount of resources (eg)memory)they require
Compare the suitability of different algorithms for a
given task and data set.