debut ecriture algo recursive pivot

This commit is contained in:
hugogogo
2021-09-23 13:37:14 +02:00
parent 37b1daa814
commit 8f70063f29
13 changed files with 95 additions and 71 deletions

View File

@@ -48,7 +48,7 @@ t_list *launch_algo(t_stack **a, t_stack **b, int flag)
if (flag)
fill_solution(solution, "start");
hugo_sort(a, b, solution);
// bubble_sort(a, b, solution);
//bubble_sort(a, b, solution);
return (solution);
}