BAN: implement quick sort and test for it

This commit is contained in:
2023-12-07 11:17:05 +02:00
parent 59ad639fa8
commit 6caa9b6f95
2 changed files with 41 additions and 0 deletions

View File

@@ -34,4 +34,8 @@ int main()
TEST("exchange sort", BAN::sort_exchange, 100);
TEST("exchange sort", BAN::sort_exchange, 1000);
TEST("exchange sort", BAN::sort_exchange, 10000);
TEST("quick sort", BAN::sort_quick, 100);
TEST("quick sort", BAN::sort_quick, 1000);
TEST("quick sort", BAN::sort_quick, 10000);
}