This project is a static linked list in C++. Its data structure is a double linked list. The reason for adopting this data structure is that many functions can be realized, and the time complexity is O(1).
- cmake -B build
- cd build
- cmake .
- make
- size
- empty
- back
- front
- pop_back
- pop_front
- push_front
- push_back
- print_list