Skip to content

Instantly share code, notes, and snippets.

View Vladis466's full-sized avatar
🥰

Vlad Predovic Vladis466

🥰
View GitHub Profile
@Vladis466
Vladis466 / minHeap_maxHeap.txt
Created November 30, 2021 21:53 — forked from WuchiOnline/minHeap_maxHeap.txt
MinHeap and MaxHeap implementation for C#
public class MinHeap
{
private readonly int[] _elements;
private int _size;
public int Count {get => _size;}
public MinHeap(int size)
{
_elements = new int[size];
}