User:William-chin

From Coder Merlin
Revision as of 11:00, 25 April 2022 by William-chin (talk | contribs) (Created page with "thumb|link=|Reflection in a Soap Bubble thumb == Background == * Read [https://en.wikipedia.org/wiki/Quicksort] (Wikipedia) * View [https://www.youtube.com/watch?v=SLauY6PpjW4 Quick Sort Algorithm] (YouTube) * View [https://www.youtube.com/watch?v=7h1s2SojIRw Quick Sort Algorithm] (YouTube) == Introduction == The quicksort algorithm is generally known as one of the fastest sorting algorithms...")
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)
Reflection in a Soap Bubble
Roadrunner image.jpg


Background[edit]


Introduction[edit]

The quicksort algorithm is generally known as one of the fastest sorting algorithms, many times faster than heap sort. If implemented well, quick sort algorithms can have a complexity of O(n log n)


Algorithm[edit]

The quick sort algorithm calls for a pivot during its recursive calls, here is an overview:

  1. Iterate, with an index, over all array elements
  2. If the element on the left is greater than the element on the right, swap the elements
  3. Repeat steps 1 & 2 until there are no more swaps to complete

Implementation[edit]

Although the algorithm is simple, the implementation takes a bit more thought. Here are some things to keep in mind:

  • You'll need a variable to count the number of swaps you've made, in total and after each pass
  • Before a swap, you'll need to store one of the values in a temporary variable
  • You'll need a nested loop (the outer loop to continue until the array is sorted, and the inner loop to iterate over the array)
  • Consider which type of loop is the best option (Hint: you'll need the outer loop to always run at least once)

Swaps[edit]

You can write the swap implementation within the nested loop or within a separate function. Note that if you choose to write a separate function, you'll want to pass the array into the function by reference to avoid making a copy of the array each time you need to make a swap. However you choose to implement the swap, you'll need to store at least one of the values (the left or the right) outside of the array. If you just swap without storing one of the values:

integers[index-1] = integers[index]
integers[index] = integers[index-1]

After the execution of the above code, the elements/integers at index and index - 1 would be equal to whatever the element/integer at index originally was. In order to solve this, you'll need to store either initial element into a temporary variable, swap the elements, then assign the remaining element to your stored value.

Example[edit]

Here's an example of a bubble sort for an array with 3 elements:

Array: [42, 82, 40] | Initial, Pass: 0 
Array: [42, 40, 82] | Swaps: 1, Pass: 1
Array: [40, 42, 82] | Swaps: 1, Pass: 2
Array: [40, 42, 82] | Swaps: 0, Pass: 3
Sorted in 3 iterations

Iteration #

  1. The array was initially set to [42, 82, 40]. Remember that we compare each element with the one before it, so the algorithm will compare 42 and 82 first. Since 42 < 82, there there's nothing to swap. However, for the next two elements 82 and 40, 82 > 40 so the elements are swapped.
  2. For the second iteration, the array starts at [42, 40, 82]. The first two elements, 42 and 40 are compared. Because 42 > 40, the first two elements are swapped. Then, the next two elements: 42 and 82 are compared. Because 42 < 82, they are already in order and no swaps need to be made.
  3. For the third iteration, the array start at Array: [40, 42, 82]. The first two elements, 40 and 42 are compared. Because 40 < 42, no swaps need to be made. Then, the next two elements, 42 and 82 are compared. Because 42 < 82, no swaps need to be made. Because no swaps were made at all in this iteration, we know the array is sorted and we can exit the loop.

Performance[edit]

Although bubble sort is a simple algorithm to implement, it is rarely used for real-world applications because of its poor performance ( O(n^2) ) and is usually seen in an academic environment.


Exercises[edit]

ExercisesExercisesIcon.png
  •  M1352-10  Complete  Merlin Mission Manager  Mission M1352-10.