I'm using the following code to sort elements in a std.vector
struct element {
int order;
int someValue;
};
int comp( element a, element b ) {
if (a.order < b.order)
return true;
return (rand() % 2) == 0;
}
vector.quickSort(comp);
is this code correct if I'm trying to add randomness on the elements that have the same order value