Skip to content
Snippets Groups Projects
Commit 32151283 authored by Fernando Erd's avatar Fernando Erd :ok_hand:
Browse files

identando

parent 6a97b319
Branches
No related tags found
No related merge requests found
...@@ -2,6 +2,10 @@ ...@@ -2,6 +2,10 @@
void LerDados (int *Vetor); void LerDados (int *Vetor);
void GeraVetor (int *Vetor); void GeraVetor (int *Vetor);
void ImprimeVetor (int *Vetor); void ImprimeVetor (int *Vetor);
void TempoSelectSort (int *Vetor);
void TempoBubbleSort (int *Vetor);
void TempoQuickSortRecursivo (int *Vetor);
void TempoQuickSortIterativo (int *Vetor);
void SelectSort (int *Vetor); void SelectSort (int *Vetor);
void BubbleSort (int *Vetor); void BubbleSort (int *Vetor);
void QuickSortRecursivo (int Vetor[], int Esquerda, int Direita); void QuickSortRecursivo (int Vetor[], int Esquerda, int Direita);
......
No preview for this file type
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment