package sort2;
import utils.ArrayUtils;
/**
* @author å壮é£
* https://github.com/zfman.
* https://blog.csdn.net/lzhuangfei.
*/
public class BuddleSort {
public static void main(String[] args) {
int[] m = {
3, 1, 5, 8, 4, 6, 9, 2, 4, 0
};
int n = m.length;
for (int i = 0; i < n-1; i++) {
for(int j=0;j