You are on page 1of 1

Rust programming chap3 :

Programming Rust is a quite interesting experience thanks to the nature of the language

Find here a basic example to do Bubble sorting:


fn bubble_sort<T: PartialOrd>(arr: &mut [T]) {
for i in 0..arr.len() {
for j in 1..arr.len() - i {
if arr[j - 1] > arr[j] {
arr.swap(j - 1, j);
}
}
}
}

Orange Restricted

You might also like