Skip to content
/ bsort Public

Integer sorting algorithm using binary radix sort.

License

Notifications You must be signed in to change notification settings

Fede112/bsort

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

7 Commits
 
 
 
 
 
 
 
 

Repository files navigation

bsort

Fast positive integer sorting algorithm using radix sort written in C++. The algorithm was based on @rcgldr original code as discussed in this thread.

Compilation:

g++ bsort.cc -o bsort.x -Wall -O2

Usage:

./bsort.x [-r record length in bytes] [-k key length in bytes] [-s key initial byte] [-o output filename] filename

The input file should be a binary file. Code can be easily modified to handle ascii files.

About

Integer sorting algorithm using binary radix sort.

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages