https://github.com/mmncit/jalgo
Data Structures and Algorithms in Java
https://github.com/mmncit/jalgo
Last synced: 3 months ago
JSON representation
Data Structures and Algorithms in Java
- Host: GitHub
- URL: https://github.com/mmncit/jalgo
- Owner: mmncit
- Created: 2019-01-28T03:15:12.000Z (over 6 years ago)
- Default Branch: master
- Last Pushed: 2019-11-14T08:53:14.000Z (over 5 years ago)
- Last Synced: 2025-01-19T12:49:38.766Z (5 months ago)
- Language: Java
- Size: 644 KB
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# JALGO
Implementation data structures and algorithms in Java
## Tutorial materials for CPSC 319/331:
* [CPSC 319 - Winter 2019](http://pages.cpsc.ucalgary.ca/~mdmamunur.rashid1/CPSC319-W19.html)
* [CPSC 331 - Spring 2018](http://pages.cpsc.ucalgary.ca/~mdmamunur.rashid1/cpsc331.html)
* [CPSC 319 - Winter 2018](http://pages.cpsc.ucalgary.ca/~mdmamunur.rashid1/CPSC319-W18.html)## Build instructions
```bash
make
```It should compile all the java source files that need to be re-built. The build has been tested with GNU compiler Linux (Fedora 26).
## Usage
From the Command Prompt, type "java" with a class name of the main program. As example, if Main.java (having the main function) produces Main.class after compliation, then type as below:
```bash
java Main
```If all goes well, the output of the program should be displayed/generated.