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
- Host: GitHub
- URL: https://github.com/caiofov/datastructures-oz
- Owner: caiofov
- Created: 2021-12-05T19:07:27.000Z (over 3 years ago)
- Default Branch: main
- Last Pushed: 2021-12-08T04:39:30.000Z (over 3 years ago)
- Last Synced: 2025-02-13T04:31:23.575Z (4 months ago)
- Topics: abstract-data-types, data-structures, dictionary, oz, stack, tree-structure
- Language: Oz
- 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
# 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