Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
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.
- Host: GitHub
- URL: https://github.com/cankatabaci/singlylinkedlist
- Owner: cankatabaci
- Created: 2017-03-24T23:53:21.000Z (almost 8 years ago)
- Default Branch: master
- Last Pushed: 2017-03-26T00:34:44.000Z (almost 8 years ago)
- Last Synced: 2024-12-07T12:42:19.152Z (2 months ago)
- Topics: data-structures, linked-list, single-linked-list
- Language: C#
- Homepage:
- Size: 13.7 KB
- Stars: 4
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
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 |