An open API service indexing awesome lists of open source software.

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

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*