Bubble Sort - C#
Join the DZone community and get the full member experience.
Join For FreeBubble Sort - C#
Efficiency - O(n^2)
public int[] BubbleSort(int[] _arr)
{
for (int i = _arr.Length - 1; i > 0; i--)
{
for (int j = 0; j < i; j++)
{
if (_arr[j] > _arr[j + 1])
{
int temp = _arr[j];
_arr[j] = _arr[j + 1];
_arr[j + 1] = temp;
}
}
}
return _arr;
}
Sort (Unix)
Opinions expressed by DZone contributors are their own.
Comments