mirror of
https://github.com/rust-lang/rustlings.git
synced 2026-01-12 05:39:19 +00:00
18 lines
313 B
Markdown
18 lines
313 B
Markdown
In C, a simple bubble sort application would be following:
|
|
|
|
```c
|
|
void bubbleSort(int arr[], int n)
|
|
{
|
|
for (int i = 0; i < n-1; i++){
|
|
for (int j = 0; j < n-i-1; j++){
|
|
if (arr[j] > arr[j+1]){
|
|
int temp = arr[j];
|
|
arr[j] = arr[j+1];
|
|
arr[j+1] = temp;
|
|
}
|
|
}
|
|
}
|
|
}
|
|
```
|
|
|
|
Implement the same code in Rust. |