-
Notifications
You must be signed in to change notification settings - Fork 168
Getting Started
BlueRaja edited this page Jan 4, 2016
·
17 revisions
-
Add
Priority Queue/Priority Queue.csprojto your solution. -
Reference the
Priority Queueproject from any projects you want to use it from. - Add
using Priority_Queueto the top of any files you want to use it from.
This project comes with two IPriorityQueue implementations:
-
SimplePriorityQueueis thread-safe, contains safety checks, and is easy-to-use. -
FastPriorityQueueis less convenient and safe, but has been optimized to be as absolutely fast as possible.
Click the above links to learn how to use each one.