Pregunta de entrevista de Google

Which is faster, bubble sort or quick sort?

Respuestas de entrevistas

Anónimo

16 jun 2018

In worst case they are both o(n^2) average case quick sort O(nlogn) and bubble sort is o(n^2) and quick sort O(nlogn). Bubble sort is only fast with small sets. But generally Quicksort is faster.

1

Anónimo

16 oct 2017

quick sort

1