Data Structures and Algorithms in C ( DSA )
-
Updated
Aug 24, 2024 - C
Data Structures and Algorithms in C ( DSA )
Your one-stop GitHub repo for competitive coding and data structures! 🤖 Curated notes, practice problems, and real-world applications. Sharpen your skills and ace those interviews! 💻🔥
From Basic to Hard Data Structures codes using c language
This is a simple implementation of a singly linked-list in C. Singly linked-lists are a type of data structure that are used to store a collection of elements. Each element in a singly linked-list is called a node. Each node contains two parts: the data and a pointer to the next node. The first node in a singly linked-list is called the head.
Add a description, image, and links to the singly-linked-list-in-c topic page so that developers can more easily learn about it.
To associate your repository with the singly-linked-list-in-c topic, visit your repo's landing page and select "manage topics."