package com.dcchen.pseudo;
/**
* pseudoCode
*
* @author dcchen
*
*/
public class _____ {
public static void ________(int[] ___) {
int ____ = 0;
for (int ______ = ___.length - 1; ______ > 0; --______) {
for (int ________ = 0; ________ < ______; ++________) {
if (___[________ + 1] < ___[________]) {
____ = ___[________];
___[________] = ___[________ + 1];
___[________ + 1] = ____;
}
}
}
for (int i : ___) {
System.out.print(i + "\t");
}
}
public static void main(String[] args) {
int[] ___ = { 9, 2, 16, 8 };
_____.________(___);
}
}