Bubble sort in C#

Saratvaddilli
Posted by Saratvaddilli under C# category on | Points: 40 | Views : 1974
            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;
}

Comments or Responses

Login to post response