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).
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.
The ADV-UI is available on jCenter. It requires Java 11 or higher.
compile 'ch.hsr.adv:adv-ui:2.0'<dependency>
  <groupId>ch.hsr.adv</groupId>
  <artifactId>adv-ui</artifactId>
  <version>2.0</version>
</dependency>java -jar /path/to/adv-ui-<version>.jarIf 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