https://github.com/alkesst/datastructures
Some data structures implemented in java and haskell
https://github.com/alkesst/datastructures
algorithms data-structures data-structures-algorithms datastructures haskell java
Last synced: 3 months ago
JSON representation
Some data structures implemented in java and haskell
- Host: GitHub
- URL: https://github.com/alkesst/datastructures
- Owner: Alkesst
- Created: 2017-12-03T17:20:24.000Z (almost 8 years ago)
- Default Branch: master
- Last Pushed: 2018-01-04T19:37:16.000Z (almost 8 years ago)
- Last Synced: 2025-04-13T17:42:36.939Z (6 months ago)
- Topics: algorithms, data-structures, data-structures-algorithms, datastructures, haskell, java
- Language: Java
- Homepage:
- Size: 44.9 KB
- Stars: 5
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# DataStructures
Implementations of some Data Structures viewed in class.
## How to use
### Haskell
Accessing the cloned repo:
```
cd $CUSTOMPATH/DataStructures
```
Opening the Glasgow Haskell Compiler importing the current path (requiered if the data structure is implemented with other data structure. i.e. TwoStackQueue, BSTSet, etc...
```
ghci -i$(pwd)
```
### Java
Create a new project and move the sourcefiles into the project.