Advertisement
wingman007

BubbleSort

May 5th, 2016
195
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C# 1.16 KB | None | 0 0
  1. using System;
  2. using System.Collections.Generic;
  3. using System.Linq;
  4. using System.Text;
  5. using System.Threading.Tasks;
  6.  
  7. namespace BubbleSort
  8. {
  9.     class Program
  10.     {
  11.         static void Main(string[] args)
  12.         {
  13.             int[] array = new int[]{100, 32, 45, 67, 45, 67,89 ,93, 56, 23, 56, 56, 78, 1000, 10, 1, 97};
  14.             SortArray(array);
  15.             for(int i = 0; i < array.Length; i++)
  16.             {
  17.                 Console.WriteLine(array[i]);
  18.             }
  19.         }
  20.  
  21.         static void SortArray(int[] array)
  22.         {
  23.             int temp; // keeps the value for the swap
  24.             for(int i = 0; i < array.Length; i++)
  25.             {
  26.                 for(int j = i+1; j < array.Length; j++)
  27.                 {
  28.                     if (array[j] < array[i])
  29.                     {
  30.                         temp = array[j];
  31.                         array[j] = array[i];
  32.                         array[i] = temp;
  33.                     }
  34.                     else
  35.                     {
  36.                         continue;
  37.                     }
  38.                 }
  39.             }
  40.         }
  41.     }
  42. }
  43. // http://www.sorting-algorithms.com/bubble-sort
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement