/LinkedListcpp

a generic class to manipulate LinkedList

Primary LanguageC++GNU General Public License v3.0GPL-3.0

LinkedListcpp

a generic class to manipulate LinkedList


First of all, you need to include the file "LinkedList.hpp" to your source file. After, you can create an object like this :

LinkedList<type> variable;

you have many methods to add, remove elements, set and get element.

As you want and as you like.

van