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

51,823 answers

573 users

How to swap two values of an array 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 main()
{
    let mut arr = [99, 3, 7, 0, 2, 1, 8, 6];

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




/*
run:

2 3 7 0 99 1 8 6 

*/


 



answered Apr 20, 2023 by avibootz

Related questions

2 answers 108 views
108 views asked Feb 5, 2023 by avibootz
1 answer 81 views
1 answer 139 views
1 answer 43 views
1 answer 73 views
...