Skip to content

Commit

Permalink
adds note explaining origin of the name 'radix sort' (trekhleb#293)
Browse files Browse the repository at this point in the history
  • Loading branch information
kalouo authored and trekhleb committed Mar 22, 2019
1 parent 43e1cca commit f36381c
Showing 1 changed file with 7 additions and 0 deletions.
7 changes: 7 additions & 0 deletions src/algorithms/sorting/radix-sort/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,13 @@ is required, but because integers can represent strings of characters
(e.g., names or dates) and specially formatted floating point numbers, radix
sort is not limited to integers.

*Where does the name come from?*

In numeral systems, the word **radix** represents how many digits are possible.
For example, a binary system (using numbers 0 and 1) has a radix of 2 and a decimal
system (using numbers 0 to 9) has a radix of 10.


## Efficiency

The topic of the efficiency of radix sort compared to other sorting algorithms is
Expand Down

0 comments on commit f36381c

Please sign in to comment.