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 Scala

1 Answer

0 votes
import scala.collection.mutable.ArrayBuffer

object BubbleSort {
  def bubbleSort(arr: ArrayBuffer[Int]): Unit = {
    var size = arr.length
    var swapped = true

    while (swapped) {
      swapped = false
      for (i <- 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 -= 1
    }
  }

  def main(args: Array[String]): Unit = {
    val arr = ArrayBuffer(3, 14, 4, 1, 5, 90, 2, 6, 89, 7)

    bubbleSort(arr)

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

  
  
/*
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 70 views
1 answer 84 views
1 answer 85 views
1 answer 124 views
1 answer 182 views
1 answer 186 views
...