标签:
?
?
?
?
public static void BubbleSort<T>(T[] arrayList) where T : IComparable<T> { for (int i = 0; i < arrayList.Length - 1; i++) { for (int j = 0; j < arrayList.Length - i - 1; j++) { if (arrayList[j].CompareTo(arrayList[j + 1]) > 0) { T temp = arrayList[j]; arrayList[j] = arrayList[j + 1]; arrayList[j + 1] = temp; } } } } |
?
?
?
public static void BubbleSort<T>(T[] arrayList) where T : IComparable<T>
{
for (int i = 0; i < arrayList.Length - 1; i++)
{
for (int j = 0; j < arrayList.Length - i - 1; j++)
{
if (arrayList[j].CompareTo(arrayList[j + 1]) > 0)
{
T temp = arrayList[j];
arrayList[j] = arrayList[j + 1];
arrayList[j + 1] = temp;
}
}
}
}
?
?
?
?
?
?
?
?
?
?
?
标签:
原文地址:http://www.cnblogs.com/LouisGuo/p/4640670.html