We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 43e1cca commit f36381cCopy full SHA for f36381c
src/algorithms/sorting/radix-sort/README.md
@@ -7,6 +7,13 @@ is required, but because integers can represent strings of characters
7
(e.g., names or dates) and specially formatted floating point numbers, radix
8
sort is not limited to integers.
9
10
+*Where does the name come from?*
11
+
12
+In numeral systems, the word **radix** represents how many digits are possible.
13
+For example, a binary system (using numbers 0 and 1) has a radix of 2 and a decimal
14
+system (using numbers 0 to 9) has a radix of 10.
15
16
17
## Efficiency
18
19
The topic of the efficiency of radix sort compared to other sorting algorithms is
0 commit comments