Merge branch 'master' into radix

This commit is contained in:
2026-01-07 14:53:07 +00:00
15 changed files with 144 additions and 67 deletions

View File

@@ -29,10 +29,7 @@ int test1(int argc, char **argv)
//bucket_algo(piles, preset, range_bucket(piles->a));
radix(piles);
}
if (piles->a)
stack_clear_all(piles->a, piles->a);
if (piles->b)
stack_clear_all(piles->b, piles->b);
free_all(piles);
free(piles);
return (0);
}