How to implement a set?

后端 未结 5 1231
别那么骄傲
别那么骄傲 2021-02-04 16:56

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

5条回答
  •  梦如初夏
    2021-02-04 17:58

    There are lot of ways for set implementation. Here are some of them. Besides MSDN have very good article on it.

提交回复
热议问题