使用java操作数组排序 package com.green.liu.sort; /* * AUTHOR:刘青青 * DATE:2012年8月10号 */ public class Sort { /* * 插入排序方法,对整数数组从小到大的排序 */ public void insertSortAsc(int arr[])