Skip to content

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

Notifications You must be signed in to change notification settings

cankatabaci/SinglyLinkedList

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

4 Commits
 
 
 
 
 
 
 
 
 
 

Repository files navigation

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

About

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

Topics

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages