Hey guys,
I have made a Linked List ADT for both ordered and unordered lists. I would appreciate if someone can try it out and test for errors. The three code segments below are the header files LinkedList.h OrderedLinkedList.h UnorderedLinkedList.h
the lists can be created using either "OrderedLinkedList<dType> listname;" or "UnorderedLinkedList<dType> listname;" where dType is a datatype that will be used for the id field. The id field is the unique identifier for the list.
The fourth code segment is just a quick sample program I wrote to test the classes. It is pretty unorganized but it demonstrates how to use the classes.
If you find this useful feel free to use it and customize it. But give credit where due.
And I know it is not as feature rich as it could be, as it is still a work in progress.