quicksort

Vector sorting of character vectors with qsort

The following program is not ordering the vector of chars vectors correctly, but I don't know why. Maybe it's my helper funct ... td_membros;j++){ cout<<equipe[i][j]<<'\n'; } cout<<'\n'; } return 0; }

Quicksort in Java does not work

I'm trying to implement the quicksort method, but the code I wrote is not working, can someone help me (it sorts part of the ... } if (f!= end) quick(v, start, f); if (i!=start) quick(v, i, end); } }

Stable vs unstable sorting

What defines a stable sorting algorithm? This question has already been talked a little about what is stable and unstable or ... ds be? Ex: int vec[5]={4,2,5,1,7}; If I wanted to sort this vector what would it be to preserve the order of the records?

Ordering with certain condition

I asked the question who will be reproached? that had the rule the students would be ordered according to the number of prob ... pessoa[i].nota = pessoa[j].nota; pessoa[j].nota = aux; } } } } }

Quicksort C-contest.c:16: 50: error: request for member 'nome' in something not a structure or union

I am trying to make this question of URI: Tetris His high school class decided to organize a tetris Championship. ... i = 0; i < j; i++){ jogador[i].pontuacao = 0; } scanf("%d", &j); } return 0; }