algos Flashcards

1
Q

Bubble Sort

A

Compares an element to its neighbor, if the element is larger that its neighbor, they swap places. The largest elements “bubble up” to the end with each pass of the loop. Complexity: Time: O(n²), Space: O(1)

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

Selection Sort

A

Complexity: Time: O(n²), Space: O(n)

Compares an element against all the elements of the array until it finds the smallest, then they swap places. Small elements get pushed to the beginning with each pass of the loop.

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

Insertion Sort

A

Complexity: Time: O(n²), Space: O(n)

Iterate over items 2 to n in the list, inserting each in the correct place in the left sublist

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

Quick Sort

A

Quick sort is a divide and conquer algorithm. Quick sort first divides a large array into two smaller sub-arrays: the low elements and the high elements. Quick sort can then recursively sort the sub-arrays.

Quick sort’s steps:

Pick an element, called a pivot, from the array.

Partitioning: reorder the array so that all elements with values less than the pivot come before the pivot, while all elements with values greater than the pivot come after it (equal values can go either way). After this partitioning, the pivot is in its final position. This is called the partition operation.

Recursively apply the above steps to the sub-array of elements with smaller values and separately to the sub-array of elements with greater values.
How well did you know this?
1
Not at all
2
3
4
5
Perfectly
5
Q

Heap Sort

A

Complexity: O(n log n)

In computer science, heap sort is a comparison-based sorting algorithm. Heap sort can be thought of as an improved selection sort.

Heap sort’s steps:

Divides its input into a sorted and an unsorted region

Iteratively shrinks the unsorted region by extracting the largest element and moving that to the sorted region.

The improvement on selection sort consists of the use of a heap data structure rather than a linear-time search to find the maximum.

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

Merge Sort

A

Complexity: O(n log n)

Merge Sort is a divide and conquer algorithm that is an efficient, general-purpose, comparison-based sorting algorithm.

Merge sort’s steps:

Divide the unsorted list into n sublists, each containing 1 element (a list of 1 element is considered sorted).

Repeatedly merge sublists to produce new sorted sublists until there is only 1 sublist remaining. This will be the sorted list.
How well did you know this?
1
Not at all
2
3
4
5
Perfectly