Skip to content

Instantly share code, notes, and snippets.

@memclutter
Created July 23, 2017 17:09
Show Gist options
  • Save memclutter/f52a6c5c3d68f669e680ced4278244f0 to your computer and use it in GitHub Desktop.
Save memclutter/f52a6c5c3d68f669e680ced4278244f0 to your computer and use it in GitHub Desktop.
Implementation of quick sorting on erlang
-module(qsort).
-export([qsort/1]).
% Implementation of quick sorting on erlang
qsort([]) -> [];
qsort([Pivot|T]) ->
qsort([X || X <- T, X < Pivot]) ++ [Pivot] ++ qsort([X || X <- T, X >= Pivot]).
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment