Advertisement
gride29

zaddd

Dec 9th, 2020
232
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C# 3.84 KB | None | 0 0
  1. using System;
  2.  
  3. namespace Zad2
  4. {
  5.     interface IKolejkaPriorytetowa
  6.     {
  7.         int Wielkość
  8.         {
  9.             get;
  10.             set;
  11.         }
  12.         void Wstaw(int wartość);
  13.         int Usun();
  14.     }
  15.  
  16.     class KolejkaPriorytetowaMin : IKolejkaPriorytetowa
  17.     {
  18.         public int Wielkość { get; set; }
  19.         int[] dane;
  20.  
  21.         public KolejkaPriorytetowaMin(int rozmiar)
  22.         {
  23.             dane = new int[rozmiar];
  24.             Wielkość = 0;
  25.         }
  26.  
  27.         public int getRightChild(int index)
  28.         {
  29.             if ((((2 * index) + 1) < dane.Length && (index >= 1)))
  30.                 return (2 * index) + 1;
  31.             return -1;
  32.         }
  33.  
  34.         public int getLeftChild(int index)
  35.         {
  36.             if (((2 * index) < dane.Length && (index >= 1)))
  37.                 return 2 * index;
  38.             return -1;
  39.         }
  40.  
  41.         public int getParent(int index)
  42.         {
  43.             if ((index > 1) && (index < dane.Length))
  44.             {
  45.                 return index / 2;
  46.             }
  47.             return -1;
  48.         }
  49.  
  50.         public void minHeapify(int index)
  51.         {
  52.             int leftChildIndex = getLeftChild(index);
  53.             int rightChildIndex = getRightChild(index);
  54.  
  55.             int smallest = index;
  56.  
  57.             if ((leftChildIndex <= Wielkość) && (leftChildIndex > 0))
  58.             {
  59.                 if (dane[leftChildIndex] < dane[smallest])
  60.                 {
  61.                     smallest = leftChildIndex;
  62.                 }
  63.             }
  64.  
  65.             if ((rightChildIndex <= Wielkość && (rightChildIndex > 0)))
  66.             {
  67.                 if (dane[rightChildIndex] < dane[smallest])
  68.                 {
  69.                     smallest = rightChildIndex;
  70.                 }
  71.             }
  72.  
  73.             if (smallest != index)
  74.             {
  75.                 int temp;
  76.                
  77.                 temp = dane[smallest];
  78.                 dane[smallest] = dane[index];
  79.                 dane[index] = temp;
  80.                 minHeapify(smallest);
  81.             }
  82.         }
  83.  
  84.         public void buildMinHeap()
  85.         {
  86.             for (int i = Wielkość / 2; i >= 1; i--)
  87.             {
  88.                 minHeapify(i);
  89.             }
  90.         }
  91.  
  92.         public int Usun()
  93.         {
  94.             int min = dane[1];
  95.             dane[1] = dane[Wielkość];
  96.             Wielkość--;
  97.             minHeapify(1);
  98.             return min;
  99.         }
  100.  
  101.         public void decreaseKey(int index, int key)
  102.         {
  103.             dane[index] = key;
  104.             while ((index > 1) && (dane[getParent(index)] > dane[index]))
  105.             {
  106.                 int temp;
  107.                 temp = dane[getParent(index)];
  108.                 dane[getParent(index)] = dane[index];
  109.                 dane[index] = temp;
  110.                 index = getParent(index);
  111.             }
  112.         }
  113.  
  114.         public void Wstaw(int wartość)
  115.         {
  116.             Wielkość++;
  117.             dane[Wielkość] = 1000;
  118.             decreaseKey(Wielkość, wartość);
  119.         }
  120.  
  121.         public void Wypisz()
  122.         {
  123.             for (int i = 1; i <= Wielkość; i++)
  124.             {
  125.                 Console.Write(dane[i] + " ");
  126.             }
  127.             Console.WriteLine();
  128.         }
  129.     }
  130.    
  131.     class Program
  132.     {
  133.         static void Main(string[] args)
  134.         {
  135.             KolejkaPriorytetowaMin min = new KolejkaPriorytetowaMin(20);
  136.             min.buildMinHeap();
  137.             min.Wstaw(1);
  138.             min.Wstaw(5);
  139.             min.Wstaw(2);
  140.             min.Wstaw(6);
  141.             min.Wstaw(4);
  142.             min.Wstaw(7);
  143.             min.Wstaw(11);
  144.             min.Wypisz();
  145.             min.Usun();
  146.             min.Wypisz();
  147.             min.Usun();
  148.             min.Wypisz();
  149.             min.Usun();
  150.             min.Wypisz();
  151.            
  152.             Console.ReadKey();
  153.         }
  154.     }
  155. }
  156.  
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement