Elin Decompiled Documentation EA 23.102 Nightly
Loading...
Searching...
No Matches
IPriorityQueue.cs
Go to the documentation of this file.
1namespace Algorithms;
2
3[Author("Franco, Gustavo")]
4public interface IPriorityQueue<T>
5{
6 int Push(T item);
7
8 T Pop();
9
10 T Peek();
11
12 void Update(int i);
13}