Add BubbleSort
This commit is contained in:
parent
935c4a6a53
commit
7b47854cb9
|
|
@ -0,0 +1,11 @@
|
||||||
|
#pragma once
|
||||||
|
#include "Sortiment.h"
|
||||||
|
#include <algorithm>
|
||||||
|
|
||||||
|
void bubbleSort(Ware *waren[10]) {
|
||||||
|
for (int i = 0; i < 10; i++) {
|
||||||
|
if (waren[i] > waren[i + 1]) {
|
||||||
|
std::swap(waren[i], waren[i + 1]);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
Loading…
Reference in New Issue