Ecosyste.ms: Awesome

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

Awesome Lists | Featured Topics | Projects

https://github.com/cankatabaci/singlylinkedlist

This project is a homework made in the course of Data Structures for implementation linked list.
https://github.com/cankatabaci/singlylinkedlist

data-structures linked-list single-linked-list

Last synced: 9 days ago
JSON representation

This project is a homework made in the course of Data Structures for implementation linked list.

Awesome Lists containing this project

README

        

# Singly Linked List

This project is a homework made in the course of Data Structures.
Purposes of the project;
- Designing a singly linked list,
- Adding random values to linked list,
- Reverse the linked list,
- Deleting the entered value and return a item for entered this position.

### Linked List Methods

Below are the methods used for the implementation linked list in this project.

| Methods | Explanation|
| ------ | ------ |
|InsertFirst(int value)|Add the Element to Head |
|InsertLast(int value)|Add the Element Last of the List |
|InsertPos(int position, int value)|Enter Element in the Specified Position |
|DeleteFirst()|Delete the First Element(Head) |
|DeleteLast()|Delete the Last Element |
|GetElement(int position)| Bring Elements Entered Positions|
|string DisplayElements()|Display the Items in the List |