Skip to content

ComputerBytez/LinkedLists

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

3 Commits
 
 
 
 
 
 

Repository files navigation

Linked Lists

A simple linked list implementation.

From a series on Linked-Lists.

Note: This repository currently only has the include, not the results from eah week s I have previously done. I might add it in the future for completeness sake, but for now I just have the final implmentation.

Simply include LinkedList.h and use it like you would any other template:

ComputerBytez::LinkedList<int> list;

Also note that LinkedList is in the ComputerBytez namespace to keep it separate from other linked-list implementations with little to no problems.

It should be noted that the standard library has much better solutions than my list implmentation (such as std::vector or std::list). This is more for eduational purposes really.


Please open an issue if you catch any bugs.

About

A linked list implementation

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages