1. 程式人生 > >兩層for循環排序排序

兩層for循環排序排序

length pre sort sorted int i++ 兩層 emp temp

 for (int i = 0; i < unsorted.Length; i++)
            {
                for (int j = i; j < unsorted.Length; j++)
                {
                    if (unsorted[i] > unsorted[j])
                    {
                        int temp = unsorted[i];
                        unsorted[i] = unsorted[j];
                        unsorted[j] = temp;
                    }
                }
            }

兩層for循環排序排序