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 Rust

1 Answer

0 votes
fn bubble_sort(arr: &mut [i32]) {
    let mut size = arr.len();
    let mut swapped = true;

    while swapped {
        swapped = false;
        for i in 1..size {
            if arr[i - 1] > arr[i] {
                arr.swap(i - 1, i);
                swapped = true;
            }
        }
        size -= 1;
    }
}

fn main() {
    let mut arr = [3, 14, 4, 1, 5, 90, 2, 6, 89, 7];

    bubble_sort(&mut arr);
    
    println!("Sorted array: {:?}", arr);
}


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

 



answered Jan 17, 2025 by avibootz
edited Jan 17, 2025 by avibootz

Related questions

1 answer 102 views
1 answer 57 views
1 answer 70 views
1 answer 84 views
1 answer 124 views
1 answer 182 views
1 answer 186 views
...