Pregunta de entrevista de Bloomberg

Could you write an quick sort algorithm, you can use any language.

Respuestas de entrevistas

Anónimo

27 de jun de 2010

Simply and straightforward.

Anónimo

30 de ago de 2010

for (i = 0; i a[j]) { temp = a[i]; a[i] = a[j]; a[j] = temp; } } }