Skip to content

Baranll0/DoublyLinkedList

Repository files navigation

Doubly Linked List

What is a Doubly Linked List?


A doubly linked list is a data structure where data is conntected both to the previous and the next element.
Each element has two connections, one pointing to the previous element and the other pointing to the next element.
Doubly linked lists are a type of linked list structure that allows for more complex arrangements of data by connecting elements to each other.
Therefore,doubly linked lists are particularly useful in scenarios where data needs to be added, removed, or modified.
This type of data structure is commonly used in various programming languages and has many applications.
For example, doubly linked lists are used in graph algorithms, pointer-based data structures, and databases.

Therefore, in this application, I have implemented the following operations on a doubly linked list:

Adding a number to the beginning of the list
Adding a number to the end of the list
Adding a number after a spesific number in the list
Searching for a number in the list
Printing the list


Tech I use:


For example, let's add elements to the end of the list step-by-step:
"10,20,38,24,26,78,83"








You can reach me through my social media accounts listed on my profile.
Have a good day!👋

About

No description, website, or topics provided.

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages