https://github.com/kautenja/doubly-linked-list
A simple and tested C++ implementation of a doubly linked list data structure and algorithms.
https://github.com/kautenja/doubly-linked-list
cpp11 doubly-linked-list header-only tested
Last synced: about 1 year ago
JSON representation
A simple and tested C++ implementation of a doubly linked list data structure and algorithms.
- Host: GitHub
- URL: https://github.com/kautenja/doubly-linked-list
- Owner: Kautenja
- License: mit
- Created: 2019-07-28T16:48:31.000Z (almost 7 years ago)
- Default Branch: master
- Last Pushed: 2019-07-28T16:58:15.000Z (almost 7 years ago)
- Last Synced: 2025-02-14T10:18:28.633Z (over 1 year ago)
- Topics: cpp11, doubly-linked-list, header-only, tested
- Language: C++
- Homepage:
- Size: 681 KB
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# Doubly Linked List
[![build-status][]][build-server]
[build-status]: https://travis-ci.com/Kautenja/doubly-linked-list.svg
[build-server]: https://travis-ci.com/Kautenja/doubly-linked-list
# Roadmap
- [x] push back
- [x] append
- [x] remove
- [x] is_empty
- [x] count
- [ ] find
# Usage
Simply add [include/doubly_linked_list.hpp](include/doubly_linked_list.hpp) to
your C++ project either by copying directly or using git submodules.
## Testing
To compile and run the [test suite](test):
```shell
scons test
```
## Benchmarking
To run benchmarks:
```shell
scons benchmark/benchmark_dll.cpp
```