Advertisement
HanysMSI

Sorotwanie przez zliczanie C# -> C

Mar 14th, 2017
367
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C# 1.46 KB | None | 0 0
  1. using System;
  2.  
  3. namespace SortingExample
  4. {
  5.     class Program
  6.     {
  7.         static void Main(string[] args)
  8.         {
  9.             int[] liczba = new int[100];
  10.             //int[] liczba = new int[1000];
  11.             //int[] liczba = {89, 76, 45, 92, 67, 12, 99, 125, 23, 44, 456, 13, 1, 9};
  12.             int zlicz = 0;
  13.             int temp;
  14.             int numLength = liczba.Length;
  15.  
  16.            
  17.  
  18.  
  19.  
  20.  
  21.             //non Sorted array
  22.             Console.WriteLine("Tablica przed sortem");
  23.             foreach (int num in liczba)
  24.             {
  25.                 Console.Write("\t {0}", num);
  26.             }
  27.  
  28.             //sorting an array
  29.             for (int i = 0; (i <= (numLength - 1)); i++)
  30.             {
  31.                
  32.                 for (int j = 0; j < (numLength - 1); j++)
  33.                 {
  34.                    
  35.                     if (liczba[j + 1] < liczba[j])
  36.                     {
  37.                         temp = liczba[j];
  38.                         liczba[j] = liczba[j + 1];
  39.                         liczba[j + 1] = temp;
  40.                     }
  41.                 }
  42.                 zlicz++;
  43.             }
  44.  
  45.             //Sorted array
  46.             Console.WriteLine("\nTablica po sorcie");
  47.             foreach (int num in liczba)
  48.             {
  49.                 Console.Write("\t {0}", num);
  50.             }
  51.             Console.WriteLine("\n Ilość operacji {0}", zlicz);
  52.             Console.Read();
  53.         }
  54.     }
  55. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement