chore: menambahkan algoritma bubble sorting#16
Closed
nongpal wants to merge 8 commits intobellshade:mainfrom
Closed
chore: menambahkan algoritma bubble sorting#16nongpal wants to merge 8 commits intobellshade:mainfrom
nongpal wants to merge 8 commits intobellshade:mainfrom
Conversation
slowy07
requested changes
Jul 14, 2025
algoritma/sorting/test_sort
Outdated
Contributor
Author
There was a problem hiding this comment.
Baik bang, sudah saya hapus
Contributor
void bubble_sort(int array[], int jumlah_elemen) {
int swapped;
do {
swapped = 0;
for (int i = 1; i < jumlah_elemen; i++) {
if (array[i - 1] > array[i]) {
tukar(&array[i - 1], &array[i]);
swapped = 1;
}
}
jumlah_elemen--; // elemen terakhir sudah di tempatnya
} while (swapped);
}mending gini ngk sih,codacy error soalnya |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Deskripsi (Description)
Mengimplementasikan algoritma bubble sorting untuk mengurutkan array yang acak menjadi urut dari elemen terkecil ke elemen terbesar di dalam array.
Checklist:
Umum:
Contributor Requirements (Syarat Kontributor) dan Lain-Lain:
Environment
Saya menggunakan (I'm using):
OS=Linuxgcc= 15.1.1 20250425Link Issues
Issues : #