//冒泡 Bubble bubble=new Bubble(); bubble.sort(arr); print(arr);//打印结果 //选择 Select select=new Select(); select.sort(arr); print(arr);//打印结果 //插入 Insert is=new Insert(); is.sort(arr); print(arr);//打印结果 //快速 Quick qs=new Quick(); qs.sort(0,arr.length-1,arr); print(arr);//打印