Created
December 6, 2017 19:50
-
-
Save diogocapela/704ed07142b7e41bacbba2fdd1871278 to your computer and use it in GitHub Desktop.
Ordernar Vector
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
for(int i = 0; i < vector.length - 1; i++) { | |
for(int k = 0; k < vector.length -1; k++) { | |
if (vector[k] > vector[k + 1]) { | |
int aux = vector[k]; | |
vector[k] = vector[k + 1]; | |
vector[k + 1] = aux; | |
} | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment