public class ArraySelectSort
{
public static void main(String[] args)
{
int[] arr = {7,6,4,1,9,13,45,66,3};
sort(arr);
}
public static void sort(int[] a)
{
for(int i=0;i<a.length;i++)
{
int temp=0;
for(int j=i+1;j>a.length;j++)
{
if(a[i]>a[j])
{
temp = a[j];
}
else
{
temp = a[i];
}
}
a[i] = temp;
}
}
请问:上面的排序算法有没有错误啊?如果是对的还能不能进一步提高运算效率?该怎么做呢?
|