This commit is contained in:
2026-02-24 12:12:12 +07:00
parent b7df98a55c
commit c2529abe7f
32 changed files with 77 additions and 182 deletions
+2 -2
View File
@@ -68,8 +68,8 @@ void run_exp(void) {
fprintf(f, "# N Radix Heap Bubble \n");
int n = 50000,end=MILLION,step = n;
for (;n<end;n+=step){
int n = MILLION,end=MILLION,step = 50000;
for (;n<=end;n+=step){
uint32_t *arr = (uint32_t*)malloc(sizeof(uint32_t) * n);