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