SAFCSP-Team / introduction-to-sorting

0 stars 0 forks source link

Sorting #1

Open devAlq opened 1 week ago

devAlq commented 1 week ago

Selection sort

compares each index of our array and starts at the first index.

Quicksort

starts with a piviot and then separates our array into 2 parts: the first part is what is smaller than the piviot, and the second part is what is larger than the piviot, then they put it back together after it is sorted.

nourabyte commented 1 week ago

@devAlq, Good job Khalid