Init commit, initial version of c heap-sort for generic types

This commit is contained in:
2025-10-06 17:45:39 -05:00
commit 095ba92914
6 changed files with 157 additions and 0 deletions

5
c/algorithms/sort_heap.h Normal file
View File

@@ -0,0 +1,5 @@
#pragma once
#include "../data_structures/heap.h"
void dlos_sort_heap(dlos_Heap *h);