https://github.com/rysteq/abstract-data-structures
This repository contains two programs written in C about the stack and queue ADT's
https://github.com/rysteq/abstract-data-structures
abstract-data-structures c data queue stack
Last synced: about 2 months ago
JSON representation
This repository contains two programs written in C about the stack and queue ADT's
- Host: GitHub
- URL: https://github.com/rysteq/abstract-data-structures
- Owner: RysteQ
- Created: 2021-08-19T10:05:15.000Z (over 3 years ago)
- Default Branch: main
- Last Pushed: 2023-03-26T03:04:40.000Z (about 2 years ago)
- Last Synced: 2025-01-28T22:24:28.843Z (4 months ago)
- Topics: abstract-data-structures, c, data, queue, stack
- Language: C
- Homepage:
- Size: 5.86 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Simple Abstract Data Types
This repository contains the following ADT's
- [Stack](https://en.wikipedia.org/wiki/Stack_(abstract_data_type))
- [Queue](https://en.wikipedia.org/wiki/Queue_(abstract_data_type))
- [Linked Lists](https://en.wikipedia.org/wiki/Linked_list)
- [Binary Tree](https://en.wikipedia.org/wiki/Binary_tree)**I have included the programs for the ADS's written in the [C programming language](https://en.wikipedia.org/wiki/C_(programming_language)). under the src folder*