Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Fibonacci, Binary, or Binomial heap in c#? [closed]

Are there any heap data structure implementations out there, fibonacci, binary, or binomial?

Reference: These are data structures used to implement priority queues, not the ones used to allocate dynamic memory. See http://en.wikipedia.org/wiki/Heap_(data_structure)

Thanks, Dave

like image 911
Dave Moore Avatar asked Jan 09 '09 16:01

Dave Moore


1 Answers

Free C# implementation of heaps and many other data structures:

  • The C5 Generic Collection Library for C# and CLI
  • Wintellect's Power Collections for .NET
like image 90
Mitch Wheat Avatar answered Oct 17 '22 05:10

Mitch Wheat