Implemented an event counter using redblack tree and minheap
- This class has a function that implements the redblack tree from scratch.
- All the delete,insert and search operation was implemented from scratch.
- This class implements the Minheap data structure from scratch.
- This is the minheap node, that links the minheap with the redblack tree.
- This is the main class where the problem statement was solved using minheap and redblack tree.