15 lines
325 B
C++
15 lines
325 B
C++
/* LICENCE: CC3 - look it up, you need to mention me but that is all */
|
|
|
|
#include <cstdint>
|
|
#include "magyarsort.h"
|
|
|
|
int main() {
|
|
uint32_t smallArr[16] = { 0xFF, 0xFFFFFFFF, 0xAA000000, 10, 20, 200, 1234513, 1, 0, 65535, 1024*1024, 1026*16, 7, 8, 1, 0}
|
|
|
|
MagyarSort::sort(smallArr, 16);
|
|
|
|
// TODO: check, etc.
|
|
|
|
return 0;
|
|
}
|