https://github.com/vishalchau2003/linked-list-using-c
https://github.com/vishalchau2003/linked-list-using-c
Last synced: 7 months ago
JSON representation
- Host: GitHub
- URL: https://github.com/vishalchau2003/linked-list-using-c
- Owner: Vishalchau2003
- Created: 2025-02-26T11:00:41.000Z (7 months ago)
- Default Branch: main
- Last Pushed: 2025-02-26T11:05:37.000Z (7 months ago)
- Last Synced: 2025-02-26T12:21:58.925Z (7 months ago)
- Language: C
- Size: 4.88 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# linked-list-using-c
## Description
This repository contains an implementation of a linked list in C, including common operations such as insertion, deletion, traversal, and accessing the top element.## Features
- Insert elements at the beginning, end, or a specific position.
- Delete elements from the beginning, end, or a specific position.
- Traverse the linked list and display elements.
- Get the top (head) element of the linked list.## Files Included
- `insert.c` - Code for inserting elements into the linked list.
- `delete.c` - Code for deleting elements from the linked list.
- `traverse.c` - Code for traversing and displaying elements.
- `top.c` - Code for getting the top element.
- `linked_list.h` - Header file containing function declarations.
- `main.c` - Example usage of the linked list operations.## Contributions
Feel free to fork this repository, create a new branch, and submit pull requests for improvements.## License
This project is open-source and available under the MIT License.