Advertisement
Guest User

Untitled

a guest
May 22nd, 2018
66
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C++ 0.35 KB | None | 0 0
  1. void Insertionsort(int*v, int tamanho);
  2. void Selectionsort(int*v, int tamanho);
  3. void Bubblesort(int*v, int tamanho);
  4. void Shellsort(int*v, int tamanho);
  5. void BubblesortMe(int*v, int tamanho);
  6. void Quicksort(int*v, int tamanho);
  7. void Mergesort(int*v, int tamanho);
  8. void Merge(int*v, int*esquerda, int*resto, int tamanho1, int tamanho2, int tamanho3);
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement