Need C library that implements set operations
I'm looking for a C library (not C++) that implements set operations. I need to support the following operations:
- intersection
- union
- elementOf
- isSubset
- insert (add to set开发者_如何学运维)
- clone
- equals
Could I just use the libc binary tree routines?
I haven't used it myself, but pblSet looks solid.
精彩评论