Skip to content

ADVisualizer/ADV-UI

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. It requires Java 11 or higher.

Gradle

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

Maven

<dependency>
  <groupId>ch.hsr.adv</groupId>
  <artifactId>adv-ui</artifactId>
  <version>2.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