Sort by weight
This commit is contained in:
@@ -1,10 +1,11 @@
|
||||
#pragma once
|
||||
#include "Sortiment.h"
|
||||
#include "Ware.h"
|
||||
#include <algorithm>
|
||||
|
||||
void bubbleSort(Ware *waren[10]) {
|
||||
for (int i = 0; i < 10; i++) {
|
||||
if (waren[i] > waren[i + 1]) {
|
||||
if (waren[i]->getGewicht() > waren[i + 1]->getGewicht()) {
|
||||
std::swap(waren[i], waren[i + 1]);
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user