Welcome to my Data Structures repository! 👩💻
This repository contains C programs implementing fundamental data structures and algorithms that are commonly studied in Computer Science curriculum.
Each program is written for educational purposes and includes comments to explain the logic. This repository can serve as a quick reference, learning resource, or even revision material for students.
Here are the major programs and data structures implemented in this repo:
| Category | Programs Included |
|---|---|
| 🔗 Linked Lists | Singly Linked List, Doubly Linked List, Circular Linked List |
| 📋 Stacks & Queues | Stack using Array, Stack using Linked List, Queue using Array, Circular Queue |
| 🌲 Trees | Binary Search Tree (BST), Tree Traversals (Inorder, Preorder, Postorder) |
| 📊 Sorting Algorithms | Bubble Sort, Selection Sort, Insertion Sort |
| 🔍 Searching Algorithms | Linear Search, Binary Search |
| 🏥 Projects | Hospital Record Management System (using linked lists and queues) |