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'm looking for a C library (not C++) that implements set operations. I need to support the following operations:
Could I just use the libc binary tree routines?
I haven't used it myself, but pblSet looks solid.