Bubble Sort
using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace Graph { class BubbleSort { static void Main1(string[] args) { int n = Convert.ToInt32(Console.ReadLine()); string[] a_temp = Console.ReadLine().Split(' '); int[] a = Array.ConvertAll(a_temp, Int32.Parse); int Swap = 0; for (int i = 0; i < a.Length - 1; i++) { for (int j = 0; j < a.Length - 1; j++) { if (a[j] > a[j+1]) ...