I am programming in C and I want to use a Linked List to store some data for my program, but I don't want to have to write the add, remove, search, etc. functions for it. I am relatively new to this language, but I have done lots of programming in Java and usually just use the Linked List from the Java Collections Framework. I'm just wondering if there is something like that for C?
Basically, I'm looking for something where I could be like #include<LinkedLists.h> and then I would be able to use all of the functinality of that class (add, remove, search, etc.) instead of having to make my own. Is there something like this for C?
Thanks!
Basically, I'm looking for something where I could be like #include<LinkedLists.h> and then I would be able to use all of the functinality of that class (add, remove, search, etc.) instead of having to make my own. Is there something like this for C?
Thanks!