Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Java library to visualize algorithm

Tags:

java

Is there any Java library to visualize common data structures (viz.stack queue LL etc) and their access methods? I just want to simulate what my data structure is doing..

like image 872
username_4567 Avatar asked Dec 07 '11 12:12

username_4567


People also ask

What is a algorithm Visualizer?

Algorithm Visualizer is an interactive online platform that visualizes algorithms from code. Learning an algorithm gets much easier with visualizing it.

What is sorting algorithm Visualizer?

📊 Sorting. Visualizer is a web app for visualizing a bunch of different sorting algorithms Like Selection Sort, Bubble Sort, Insertion Sort, Merge Sort, Quick Sort, Heap Sort With the functionality of (Speed Control) and (Array Size Control)...


1 Answers

If you just want to visualize the data, check out JUNG:

http://jung.sourceforge.net/

If you're talking about visualizing what your code is doing to the data, JUNG might still help with that, but just Google searching gave me a lot of results, so try that.

like image 73
Jon Egeland Avatar answered Oct 27 '22 06:10

Jon Egeland