https://github.com/ivandrf/linked-list
Realization of a linked list in C++
https://github.com/ivandrf/linked-list
cpp datastructures linked-list
Last synced: 4 months ago
JSON representation
Realization of a linked list in C++
- Host: GitHub
- URL: https://github.com/ivandrf/linked-list
- Owner: IvanDrf
- Created: 2025-01-20T16:10:31.000Z (over 1 year ago)
- Default Branch: main
- Last Pushed: 2025-03-05T21:07:39.000Z (over 1 year ago)
- Last Synced: 2025-03-05T22:22:54.085Z (over 1 year ago)
- Topics: cpp, datastructures, linked-list
- Language: C++
- Homepage:
- Size: 16.6 KB
- Stars: 2
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Linked List 
Realization of a linked list with some methods in C++/GO

># Methods
>• **GetBegin** - returns the beginning of the list
>
>• **GetEnd** - returns the ending of the list
>***
>• **PushBack** - inserts an element at the end ***O(1)***
>
>• **Insert** - inserts an element into the list ***O(n)***
>***
>• **Replace** - changes the value of the element ***O(n)***
>
>• **Delete** - deletes an element from the list ***O(n)***
***
># Tests
> • **PushBack** :white_check_mark:
>
> • **Insert** :white_check_mark:
>
> • **Replace** :white_check_mark:
>
> • **Delete** :white_check_mark:
>
> • **Copy Constructor** :white_check_mark:
>
> • **Move Constructor** :white_check_mark:
>
> • **Assignment Operator** :white_check_mark:
>
> • **Move Assignment Operator** :white_check_mark:
>
> • ***Result*** :white_check_mark: