I have this code working properly.
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
void quicksort (int *vetor, int inicio, int fim) {
int i, j, meio, aux;
i = inicio;
j = fim;
meio = vetor [(inicio+fim)/2];
do...
asked by
06.11.2017 / 14:53