Sort by weight

This commit is contained in:
Samuel Oberhofer
2022-05-23 21:19:36 +02:00
parent 18a1062cfc
commit 0cbb799da4
+2 -1
View File
@@ -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]);
}
}