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

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

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.