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++.
- Host: GitHub
- URL: https://github.com/jilliennelapid/singly-linked-list
- Owner: jilliennelapid
- Created: 2024-01-29T05:16:55.000Z (over 2 years ago)
- Default Branch: main
- Last Pushed: 2024-06-03T23:00:20.000Z (about 2 years ago)
- Last Synced: 2025-01-21T17:33:49.414Z (over 1 year ago)
- Topics: cpp, header-file, linked-list, singly-linked-list
- Language: C++
- Homepage:
- Size: 9.77 KB
- Stars: 1
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
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.