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

https://github.com/caiofov/datastructures-oz

Data structures implemented in Oz
https://github.com/caiofov/datastructures-oz

abstract-data-types data-structures dictionary oz stack tree-structure

Last synced: about 2 months ago
JSON representation

Data structures implemented in Oz

Awesome Lists containing this project

README

        

# Data structures in Oz
Some data structures implemented in Oz:
- Stack (create a new stack, push and pop elements, see its size, sum the elements and check if it's empty)
- Dictionary (create a new dictionary, insert elements, get element by key, see its size, check if it's empty and see all its keys)
- Binary tree [in progress]
- Queue [in progress]
- List

*(more comming soon...)*

Reference: book **"Concepts, Techniques and Models of Computer Programming"** by Peter Van Roy and Seif Harid