1. 程式人生 > >使用氣泡排序對一維陣列進行排序

使用氣泡排序對一維陣列進行排序

實現效果:

  

實現原理:

  

實現程式碼:

        //定義氣泡排序方法
        public int[] sory(int[] intArray)
        {
            for(int i=0;i<intArray.Length-1;i++){
                for (int j = 0; j < intArray.Length - i;j++ )
                {
                    if (intArray[i] > intArray[i+1]) {
                        int temp = intArray[i];
                        intArray[i] = intArray[i+1];
                        intArray[i+1] = temp;
                    }
                }
            }       return intArray;
        }