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,890 questions

51,821 answers

573 users

How to sort a list of 0s, 1s and 2s in Rust

1 Answer

0 votes
#![allow(non_snake_case)]

fn swap_values(array: &mut [isize], index1: usize, index2: usize) {
    let temp = array[index1];
    array[index1] = array[index2];
    array[index2] = temp;
}
    
fn sort012Array(arr : &mut [isize]) {
    let mut lo : usize = 0;
    let mut curr : usize = 0;
    let mut hi : usize = arr.len() - 1;
    while curr <= hi {
        if arr[curr as usize] == 0 {
            swap_values(arr, lo, curr);
            lo += 1;
            curr += 1;
        }
        else if arr[curr as usize] == 1 {
            curr += 1;
        }
        else if arr[curr as usize] == 2 {
            swap_values(arr, curr, hi);
            hi -= 1;
        }
    }
}
    
fn main()
{
    let mut arr = [1, 2, 2, 0, 1, 1, 0, 2, 0, 1, 0, 0, 1];

    sort012Array(&mut arr);
    
    {
        let mut i : usize = 0;
        while i < arr.len() {
            print!("{} ", arr[i as usize]);
            i += 1;
        }
    }
}




/*
run:

0 0 0 0 0 1 1 1 1 1 2 2 2 

*/


 



answered Apr 20, 2023 by avibootz

Related questions

1 answer 154 views
1 answer 128 views
1 answer 103 views
1 answer 118 views
1 answer 124 views
1 answer 129 views
...