冒泡排序
Posted 薄荷加冰1
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了冒泡排序相关的知识,希望对你有一定的参考价值。
C#
1 public static int[] BubbleSort(int[] array) 2 { 3 int length = array.Length; 4 for(int i=0;i<length-1;i++) 5 { 6 for (int j = 0; j < length - i - 1; j++) 7 { 8 if (array[j] >array[j+1]) 9 { 10 int temp = array[j]; 11 array[j] = array[j+1]; 12 array[j+1] = temp; 13 } 14 } 15 } 16 17 return array; 18 }
以上是关于冒泡排序的主要内容,如果未能解决你的问题,请参考以下文章