Skip to content

stevethedev/cpp-list-examples

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

15 Commits
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

C++ List Examples

Example Lists, implemented in C++ by Steve the Dev

Examples

  • examples/arr-list.cpp : Hello World example with the Array List
  • examples/sl-list.cpp : Hello World example with the Singly Linked List

Example Binaries

Compile the example binaries with the included makefile. All of the examples from the examples/ directory get compiled into the bin/ directory under the same name.

Interfaces

  • header/Lists/ListInterface.hpp : Base List interface
  • header/Lists/LinkedListInterface.hpp : Base Linked List interface
  • header/Nodes/NodeInterface.hpp : Base Node interface
  • header/Nodes/SinglyLinkedNodeInterface.hpp : Singly-Linked Node interface
  • header/Lists/ArrayListInterface.hpp : Array List Interface

Lists

  • header/Lists/SinglyLinkedList.hpp : Singly-Linked List
  • header/Lists/ArrayList.hpp : Array List

Nodes

  • header/Nodes/Node.hpp : Base Node implementation
  • header/Nodes/SinglyLinkedNode.hpp : Singly Linked Node implementation

Related Entries

Steve the Dev: Implementing the Singly Linked List Array Lists: A Less Awful Way to Handle Arrays

About

Example Lists, implemented in C++ by Steve the Dev

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published