An open API service indexing awesome lists of open source software.

https://github.com/jilliennelapid/singly-linked-list

Practicing the implementation of a singly linked list data structure in C++.
https://github.com/jilliennelapid/singly-linked-list

cpp header-file linked-list singly-linked-list

Last synced: about 1 year ago
JSON representation

Practicing the implementation of a singly linked list data structure in C++.

Awesome Lists containing this project

README

          

# Singly Linked List
This repository contains the code from practicing singly linked list implementation in C++.

To organize the code:
* `main_SLL.cpp` : contains the main function, runs the code.
* `singlyLL.cpp` : contains the implementation of constructors and functions.
* `singlyLL.h ` : header file, contains class and function declarations.

> Additionally,
* `singlyLL_wComments.cpp` : declaration and implementation in the same file; contains my personal comments to break down the code.