summaryrefslogtreecommitdiffhomepage
path: root/include/stc/algo/sort.h
diff options
context:
space:
mode:
authorTyge Lovset <[email protected]>2023-05-18 11:49:31 +0200
committerTyge Lovset <[email protected]>2023-05-18 11:49:31 +0200
commit50a16934dde8e65bbcf628d6342c1649f7e09365 (patch)
treea14f3347622979858ff60b95630877029cb46ef6 /include/stc/algo/sort.h
parentbe7d9913d4a284bdeb7f0431482b5731b5ef31df (diff)
downloadSTC-modified-50a16934dde8e65bbcf628d6342c1649f7e09365.tar.gz
STC-modified-50a16934dde8e65bbcf628d6342c1649f7e09365.zip
Huge update: cqueue and cdeq completely rewritten. cvec and cdeq API harmonized. Docs update/improved.
Diffstat (limited to 'include/stc/algo/sort.h')
-rw-r--r--include/stc/algo/sort.h100
1 files changed, 100 insertions, 0 deletions
diff --git a/include/stc/algo/sort.h b/include/stc/algo/sort.h
new file mode 100644
index 00000000..20b7e1b3
--- /dev/null
+++ b/include/stc/algo/sort.h
@@ -0,0 +1,100 @@
+/* MIT License
+ *
+ * Copyright (c) 2023 Tyge Løvset
+ *
+ * Permission is hereby granted, free of charge, to any person obtaining a copy
+ * of this software and associated documentation files (the "Software"), to deal
+ * in the Software without restriction, including without limitation the rights
+ * to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
+ * copies of the Software, and to permit persons to whom the Software is
+ * furnished to do so, subject to the following conditions:
+ *
+ * The above copyright notice and this permission notice shall be included in all
+ * copies or substantial portions of the Software.
+ *
+ * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
+ * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
+ * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
+ * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
+ * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
+ * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
+ * SOFTWARE.
+ */
+/* Generic Quicksort in C, performs as fast as c++ std::sort().
+template params:
+#define i_val - value type [required]
+#define i_less - less function. default: *x < *y
+#define i_tag name - define namearray_qsort(). i_tag defaults {i_val}
+
+// test:
+#include <stdio.h>
+#define i_val int
+#include <stc/algo/sort.h>
+
+int main() {
+ int arr[] = {23, 321, 5434, 25, 245, 1, 654, 33, 543, 21};
+
+ intarray_qsort(arr, c_arraylen(arr));
+
+ for (int i = 0; i < c_arraylen(arr); i++)
+ printf(" %d", arr[i]);
+ puts("");
+}
+*/
+#include "../ccommon.h"
+#ifndef i_type
+ #define i_at(arr, idx) (&arr[idx])
+ #ifndef i_tag
+ #define i_tag i_val
+ #endif
+ #define i_type c_PASTE(i_tag, array)
+ typedef i_val i_type;
+#endif
+#ifndef i_at
+ #define i_at(arr, idx) _cx_memb(_at_mut)(arr, idx)
+#endif
+#include "../priv/template.h"
+
+
+static inline void _cx_memb(_insertsort_ij)(_cx_self* arr, intptr_t lo, intptr_t hi) {
+ for (intptr_t j = lo, i = lo + 1; i <= hi; j = i, ++i) {
+ i_val key = *i_at(arr, i);
+ while (j >= 0 && (i_less((&key), i_at(arr, j)))) {
+ *i_at(arr, j + 1) = *i_at(arr, j);
+ --j;
+ }
+ *i_at(arr, j + 1) = key;
+ }
+}
+
+static inline void _cx_memb(_sort_ij)(_cx_self* arr, intptr_t lo, intptr_t hi) {
+ intptr_t i = lo, j;
+ while (lo < hi) {
+ i_val pivot = *i_at(arr, lo + (hi - lo)*7/16);
+ j = hi;
+
+ while (i <= j) {
+ while (i_less(i_at(arr, i), (&pivot))) ++i;
+ while (i_less((&pivot), i_at(arr, j))) --j;
+ if (i <= j) {
+ c_swap(i_val, i_at(arr, i), i_at(arr, j));
+ ++i; --j;
+ }
+ }
+ if (j - lo > hi - i) {
+ c_swap(intptr_t, &lo, &i);
+ c_swap(intptr_t, &hi, &j);
+ }
+
+ if (j - lo > 64) _cx_memb(_sort_ij)(arr, lo, j);
+ else if (j > lo) _cx_memb(_insertsort_ij)(arr, lo, j);
+ lo = i;
+ }
+}
+
+static inline void _cx_memb(_sort_n)(_cx_self* arr, intptr_t len) {
+ _cx_memb(_sort_ij)(arr, 0, len - 1);
+}
+
+#include "../priv/template2.h"
+#undef i_at