https://github.com/chowdhuryj-github/benchmarkinggui
A MSOE Lab Project for a JavaFX application on generating benchmarking plots for different methods of a Array List or Linked List implementation.
https://github.com/chowdhuryj-github/benchmarkinggui
benchmarking data-structures javafx
Last synced: 9 months ago
JSON representation
A MSOE Lab Project for a JavaFX application on generating benchmarking plots for different methods of a Array List or Linked List implementation.
- Host: GitHub
- URL: https://github.com/chowdhuryj-github/benchmarkinggui
- Owner: chowdhuryj-github
- License: mit
- Created: 2024-06-04T13:58:45.000Z (over 1 year ago)
- Default Branch: main
- Last Pushed: 2024-06-05T14:39:57.000Z (over 1 year ago)
- Last Synced: 2025-01-20T23:39:41.648Z (11 months ago)
- Topics: benchmarking, data-structures, javafx
- Language: Java
- Homepage:
- Size: 386 KB
- Stars: 1
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# The Benchmarking GUI Lab Collection
Welcome to the Benchmarking GUI Lab Collection! This repository is a data structures project that I've worked on during my freshman year at the Milwaukee School of Engineering!
## Lab 6 | Benchmarking Implementations
Created a program that is able to generate benchmark results that generate graphs to show the amount of time it takes for each of the list implementations to complete each operations as a function of the number of elements stored in that list. The list implementations and the operations are as follows:
### List Implementations
* the ```java.util.ArrayList``` implementation
* the ```java.util.Linkedlist``` implementation
* the ```datastructures.ArrayList``` implementation
* the ```datastructures.LinkedList``` implementation
* the ```datastructures.LinkedListTurbo``` implementation
### List Operations
* the ```addToFront``` operation — Adding to the front of the list
* the ```indexedContain``` operation — Iterating through the list using an index (calling get()) to find a match
* the ```contains``` operation — Determining if a value is in the list using contains()
## Lab 7 | Benchmarking Analysis
Created a word document with written Big-O analysis for all List implementations. Modified the program to have the generated pictrues saved in a folder as a .png image. The program is also modified to support command line arguments.