Search/Sort

This commit is contained in:
2026-08-29 01:58:00 +08:00
parent 8e95904cc4
commit a0758766c5
56 changed files with 5425 additions and 0 deletions
+17
View File
@@ -0,0 +1,17 @@
#ifndef INCLUDED_C_MSDRADIXSORT_H
#define INCLUDED_C_MSDRADIXSORT_H
#ifndef INCLUDED_C_TYPES_H
#include <c_Types.h>
#endif /*INCLUDED_C_TYPES_H*/
typedef struct {
c_size_t R; // Alphabet size / Radix constraints (e.g., 256 for standard byte arrays)
} c_MSDRadixSort_t;
/* ------------------------------------------------------------------------------------------------------------------ */
/* */
c_err_t c_MSDRadixSort_Sort(const c_MSDRadixSort_t* sort, char** arr, c_size_t n);
#endif /*INCLUDED_C_MSDRADIXSORT_H*/