quicksort isn't popular because it's memory friendly (bubble actually is smaller) it's popular because it's quite fast. it's an O(n log n) sort compared to bubble's O(n^2) so in almost every circumstance, it's significantly faster, and as your list to sort grows, it's often exponentially...