Skip to content

frklan/linked-list

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

2 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Linked list

My take on a simple linked list, written while reading this article. Mostly a straight copy, with the addition that it's templatized and I took the opportunity to learn a bit about unit testing with Catch2.

Compiling

You need to Catch2 installed on your system, see instructions here.

Debug build

mkdir build && cd build
cmake -DCMAKE_BUILD_TYPE=Debug ..
make

Debug build with tests

mkdir build && cd build
cmake -DCMAKE_BUILD_TYPE=Debug cmake -DBUILD_TEST:bool=on ..
make

Release build

mkdir build && cd build
cmake -DCMAKE_BUILD_TYPE=Release ..
make

TODO

TBD

Contributing

Contributions are always welcome!

When contributing to this repository, please first discuss the change you wish to make via the issue tracker, email, or any other method with the owner of this repository before making a change.

Please note that we have a code of conduct, you are required to follow it in all your interactions with the project.

Versioning

We use SemVer for versioning. For the versions available, see the tags on this repository.

Authors

  • Fredrik Andersson - Initial work - frklan

License

This project is licensed under the MIT License - see the LICENSE file for details

About

Simple c++17 linked list

Topics

Resources

License

Code of conduct

Stars

0 stars

Watchers

1 watching

Forks

Releases

No releases published

Packages

 
 
 

Contributors