This commit is contained in:
James Boutaric
2025-09-10 16:32:27 +02:00
parent e7c653710e
commit 1bf1d139d7
8 changed files with 45 additions and 4 deletions

View File

@@ -17,5 +17,5 @@ void bubblesort(int* array, int length)
swapped++;
}
}
} while(swapped==1);
} while(swapped> 0);
}