Skip to content

ADVisualizer/ADV-UI

Folders and files

NameName
Last commit message
Last commit date

Latest commit

fad7593 · Dec 7, 2018
Nov 9, 2018
Oct 12, 2018
Oct 19, 2018
Nov 19, 2018
Jun 30, 2018
Jun 25, 2018
Jun 25, 2018
Dec 3, 2018
Dec 7, 2018
May 22, 2018
May 30, 2018
Oct 19, 2018
Jan 31, 2018
Jun 8, 2018
Dec 7, 2018
Dec 7, 2018
May 23, 2018
Jun 6, 2018
Feb 21, 2018
Feb 21, 2018
Oct 19, 2018

Repository files navigation

ADV - Algorithm & Data Structure Visualizer

Download Codacy Badge Build Status codecov

The Algorithm & Data Structure Visualizer (ADV) helps students to understand the concepts of several data structures and algorithms, taught at the University of Applied Science in Rapperswil (HSR).

ADV-UI

The ADV-UI is a JavaFX application responsible for visualizing the classes of the ADV Lib. If the UI-JAR can be found on the classpath, the application is automatically started by the ADV-Lib. Otherwise the JAR must be started manually.

Install

The ADV-UI is available on jCenter and Maven Central. It requires Java 9 or higher.

Gradle

compile 'ch.hsr.adv:adv-ui:1.0'

Maven

<dependency>
  <groupId>ch.hsr.adv</groupId>
  <artifactId>adv-ui</artifactId>
  <version>1.0</version>
</dependency>

Start

java -jar /path/to/adv-ui-<version>.jar

Configure socket

If you want to start the socket server on a different port or host, you can use the following command line arguments.

java -jar adv-ui-<version>.jar --host=192.168.x.x --port=4242