This commit is contained in:
2025-09-15 14:34:48 +02:00
parent ca552281c9
commit 5f5041663e
7 changed files with 76 additions and 7 deletions

View File

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