debut algo tri

This commit is contained in:
hugogogo
2021-06-29 23:49:06 +02:00
parent f081f15f58
commit 023c7d29f6
7 changed files with 61 additions and 3 deletions

View File

@@ -47,8 +47,8 @@ t_list *launch_algo(t_stack **a, t_stack **b, int flag)
ft_lstadd_back(&solution, ft_lstnew(b));
if (flag)
fill_solution(solution, "start");
// hugo_sort(a, b, solution);
bubble_sort(a, b, solution);
hugo_sort(a, b, solution);
// bubble_sort(a, b, solution);
return (solution);
}