-
Notifications
You must be signed in to change notification settings - Fork 2.1k
/
Bubble_Sort.cs
46 lines (41 loc) · 1.11 KB
/
Bubble_Sort.cs
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
using System;
namespace Bubble_Sort
{
class Program
{
// Function for bubble sort
public static void BubbleSort(int[] array, int size)
{
int temp;
for (int i = 0; i < size - 1; i++)
{
for (int j = 0; j < size - i - 1; j++)
{
if (array[j] > array[j + 1])
{
temp = array[j];
array[j] = array[j + 1];
array[j + 1] = temp;
}
}
}
}
// Function to print array
public static void Print_Array(int[] array, int size)
{
for (int i = 0; i < size; i++)
Console.Write(Convert.ToString(array[i]) + " ");
Console.WriteLine();
}
static void Main(String[] args)
{
int[] array = { 2, 4, 3, 1, 6, 8, 4 };
BubbleSort(array, 7);
Print_Array(array, 7);
Console.WriteLine();
Console.ReadLine();
}
}
}
// Output
// 1 2 3 4 4 6 8