Welcome to collectivesolver - Programming & Software Q&A with code examples. A website with trusted programming answers. All programs are tested and work.

Contact: aviboots(AT)netvision.net.il

Buy a domain name - Register cheap domain names from $0.99 - Namecheap

Scalable Hosting That Grows With You

Secure & Reliable Web Hosting, Free Domain, Free SSL, 1-Click WordPress Install, Expert 24/7 Support

Semrush - keyword research tool

Boost your online presence with premium web hosting and servers

Disclosure: My content contains affiliate links.

39,872 questions

51,796 answers

573 users

How to implement the bubble sort algorithm in Kotlin

1 Answer

0 votes
fun bubbleSort(arr: IntArray) {
    var size = arr.size
    var swapped: Boolean

    do {
        swapped = false
        for (i in 1 until size) {
            if (arr[i - 1] > arr[i]) {
                val temp = arr[i - 1]
                arr[i - 1] = arr[i]
                arr[i] = temp
                swapped = true
            }
        }
        size--
    } while (swapped)
}

fun main() {
    val arr = intArrayOf(3, 14, 4, 1, 5, 90, 2, 6, 89, 7)

    bubbleSort(arr)

    println("Sorted array: ${arr.joinToString(", ")}")
}


 
/*
run:

Sorted array: 1, 2, 3, 4, 5, 6, 7, 14, 89, 90
 
*/

 



answered Jan 17, 2025 by avibootz

Related questions

1 answer 101 views
1 answer 56 views
1 answer 70 views
1 answer 85 views
1 answer 124 views
1 answer 182 views
1 answer 186 views
...