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

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++

Awesome Lists containing this project

README

          

# Linked List ![icons](https://img.shields.io/badge/C++-GO-blue)
Realization of a linked list with some methods in C++/GO

![alt text](https://media.geeksforgeeks.org/wp-content/uploads/20231130131446/Linked-List-Data-Structure-768.png)

># 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: