I want to implement a Set in C. Is it OK to use a linked list, when creating the SET, or should I use another approach ?
How do you usually implement your own set (if ne
There are lot of ways for set implementation. Here are some of them. Besides MSDN have very good article on it.