Pregunta de entrevista de Bloomberg

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

Respuestas de entrevistas

Anónimo

27 jun 2010

Simply and straightforward.

Anónimo

30 ago 2010

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