aaron-jaeger / linked-list-demo-cc

Demonstrates how to implement a linked list in C++

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

C++ Linked List Demo

This is a simple linked-list demonstration. Some of the concepts included in the source files are inheritence, class friendship, and templating.

Getting Started

Pull the project onto your Linux machine and run make in the root directory of the project.

Aaron@DESKTOP:~/linked_list_demo$ make

Change to the bin directory and run the executable.

Aaron@DESKTOP:~/linked_list_demo/bin$ ./LinkedListDemo

Prerequisites

You'll need:

  • g++/gcc

  • make

  • c++11 Standard Library (minimum)

Author

License

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

Acknowledgements

Thanks to:

About

Demonstrates how to implement a linked list in C++

License:MIT License


Languages

Language:C++ 77.9%Language:Makefile 22.1%