Sorting helpFigured out the sorting code.
Bubble sorting a classed arrayWeight is what I'm trying to sort by. Figured it out so all set. [code] //// Bubble Sort //// ///...
Bubble sorting a classed array[code] /* //// Bubble Sort //// ///////////////////// int temp = -1; for (int n = 0; n < numRe...
Bubble sorting a classed arraySo how would I grab the variable (Weight) to sort? I'm thinking like this [code] for (int m = 0;...
Bubble sorting a classed arrayI'm really struggling with bubble sorting a classed array(an inventory). I understand bubble sorting...