https://github.com/brunomnsilva/abstractdatatypesinc
Collection of abstract data types in C language
https://github.com/brunomnsilva/abstractdatatypesinc
abstract-data-types adts c clanguage doxygen
Last synced: 9 months ago
JSON representation
Collection of abstract data types in C language
- Host: GitHub
- URL: https://github.com/brunomnsilva/abstractdatatypesinc
- Owner: brunomnsilva
- License: mit
- Created: 2020-04-13T16:12:40.000Z (about 6 years ago)
- Default Branch: master
- Last Pushed: 2024-04-29T14:17:47.000Z (about 2 years ago)
- Last Synced: 2025-03-27T08:58:15.461Z (over 1 year ago)
- Topics: abstract-data-types, adts, c, clanguage, doxygen
- Language: C
- Size: 108 KB
- Stars: 6
- Watchers: 2
- Forks: 5
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE.txt
Awesome Lists containing this project
README
# Abstract Data Types in C
This respository contains specifications and implementations for several abstract data types in C, namely:
- ADT Complex (simple/mathematical);
- ADT Time (simple/mathematical);
- ADT Stack (collection);
- ADT Queue (collection);
- ADT List (collection);
- ADT Map (collection);
Implementations using different *linear data structures*, namely *arrays* and *linked lists* are included for some ADTs.
## Structure
Each ADT is provided in its own directory.
### Documentation
Each ADT specification and files are documented with *doxygen* format.
### Compiling
You can make use of the supplied `makefile` for each directory.
## Contributing
You can fork this project or submit a pull request. Pull requests should adhere to the existing naming and *doxygen* conventions.
You can provide different implementations for the existing ADTs and/or contribute with other ADTs.
## Authors
* Original author: **Bruno Silva** - [(GitHub page)](https://github.com/brunomnsilva) | [(Personal page)](https://www.brunomnsilva.com/)
## License
This project is licensed under the MIT License - see the [LICENSE](LICENSE.txt) file for details. **All derivative work should include this license**.