Skip to content

Instantly share code, notes, and snippets.

@filannim
Forked from rizkyabdilah/radix_sort.py
Last active August 29, 2015 14:02
Show Gist options
  • Save filannim/9bead4fa7428634e60ae to your computer and use it in GitHub Desktop.
Save filannim/9bead4fa7428634e60ae to your computer and use it in GitHub Desktop.
#!/usr/bin/env python
def radix_sort(l):
modulus, div = 10, 1
while True:
buckets = [[] for i in range(modulus)]
for value in l:
buckets[(value % modulus) / div].append(value)
modulus, div = modulus * 10, div * 10
if len(buckets[0]) == len(l):
return buckets[0]
l = []
for x in buckets:
for y in x:
l.append(y)
random_data = [13, 8, 1992, 31, 3, 1993]
print radix_sort(random_data)
@filannim
Copy link
Author

A bit more Pythonic.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment