tags:

views:

113

answers:

1

Is there any reliable and simple priority queue (linked list preferred, not necessary) implementation for C?

More generally, what C standard libraries do you use?

+1  A: 

Check out PQLib.

I use the standard C standard libraries. ;)

WhirlWind
Please, please PLEASE read the LICENSE file in PQLib _very_ carefully. It re-introduces a whole new kind of advertising clause (even worse than the original BSD advertising clause) and is incompatible with the GPL/LGPL (all versions). Basically, you can't link againtst glibc and PQLib and distribute the final product legally. The library is most decidedly _not_ open source, much less free software.
Tim Post
@Tim I didn't realize... it says BSD, but they must mean special BSD. +1
WhirlWind