https://github.com/rayeesrather99/data-structures-in-c
https://github.com/rayeesrather99/data-structures-in-c
Last synced: about 1 year ago
JSON representation
- Host: GitHub
- URL: https://github.com/rayeesrather99/data-structures-in-c
- Owner: rayeesrather99
- Created: 2023-09-13T19:38:01.000Z (almost 3 years ago)
- Default Branch: main
- Last Pushed: 2023-12-02T14:43:58.000Z (over 2 years ago)
- Last Synced: 2025-01-31T06:37:16.022Z (over 1 year ago)
- Language: C
- Size: 26.4 KB
- Stars: 1
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Data Structures in C
Welcome to the "Data-Structures-in-C" repository! This repository is a collection of common data structures implemented in the C programming language. While it currently contains an implementation of a linked list, more data structures will be added over time.
## Table of Contents
- [Linked List](#linked-list)
- [To-Do](#to-do)
- [Contributing](#contributing)
- [License](#license)
## Linked List
- [Linked List Implementation](link_to_linked_list_code.c): This directory contains the C code for a singly linked list. It includes basic operations like insertion, deletion, and traversal.
## To-Do
The following data structures are planned to be added to this repository:
- [ ] Stack
- [ ] Queue
- [ ] Binary Tree
- [ ] Hash Table
- [ ] Graph
Stay tuned for updates!
## Contributing
If you'd like to contribute to this repository, feel free to fork it and submit a pull request. Contributions, improvements, and bug fixes are always welcome.
Please follow these guidelines when contributing:
- Make sure your code follows best practices and is well-documented.
- Create a new branch for your feature or bug fix (e.g., `feature/stack-implementation`).
- Submit descriptive and concise commit messages.
- Test your changes thoroughly.
## License
This project is licensed under the MIT License - see the [LICENSE](LICENSE) file for details.