equal
deleted
inserted
replaced
17 */ |
17 */ |
18 |
18 |
19 #ifndef RADIX_SORT_H |
19 #ifndef RADIX_SORT_H |
20 #define RADIX_SORT_H |
20 #define RADIX_SORT_H |
21 |
21 |
22 /// \ingroup auxdat |
22 /// \ingroup auxalg |
23 /// \file |
23 /// \file |
24 /// \brief Radix sort |
24 /// \brief Radix sort |
25 /// |
25 /// |
26 |
26 |
27 #include <vector> |
27 #include <vector> |
192 } |
192 } |
193 }; |
193 }; |
194 |
194 |
195 } |
195 } |
196 |
196 |
197 /// \ingroup auxdat |
197 /// \ingroup auxalg |
198 /// |
198 /// |
199 /// \brief Sorts the stl compatible range into ascending order. |
199 /// \brief Sorts the stl compatible range into ascending order. |
200 /// |
200 /// |
201 /// The \c radixSort sorts the stl compatible range into ascending order. |
201 /// The \c radixSort sorts the stl compatible range into ascending order. |
202 /// The radix sort algorithm can sort the items which mapped to an |
202 /// The radix sort algorithm can sort the items which mapped to an |
409 } |
409 } |
410 }; |
410 }; |
411 |
411 |
412 } |
412 } |
413 |
413 |
414 /// \ingroup auxdat |
414 /// \ingroup auxalg |
415 /// |
415 /// |
416 /// \brief Sorts stable the stl compatible range into ascending order. |
416 /// \brief Sorts stable the stl compatible range into ascending order. |
417 /// |
417 /// |
418 /// The \c counterSort sorts the stl compatible range into ascending order. |
418 /// The \c counterSort sorts the stl compatible range into ascending order. |
419 /// The counter sort algorithm can sort the items which mapped to an |
419 /// The counter sort algorithm can sort the items which mapped to an |