class ArrayDemo6
{
public static void main(String[] args)
{
int [] arr={45,58,79,16,5,46,36,749,48};
selectSort(arr);
//System.out.println(selectSort(int [] arr));
}
public static void selectSort(int [] arr)
{
for (int x=0;x<arr.length-1 ;x++ )
{
for (int y=x+1;y<arr.length;y++ )
{
if (arr[x]>arr[y])
{
int temp=arr[x];
arr[x]=arr[y];
arr[y]=temp;
}
}
}
}
}
欢迎光临 黑马程序员技术交流社区 (http://bbs.itheima.com/) | 黑马程序员IT技术论坛 X3.2 |