File tree 5 files changed +6
-6
lines changed
5 files changed +6
-6
lines changed Original file line number Diff line number Diff line change @@ -12,7 +12,7 @@ Finish date: December 13, 2020
12
12
- [ Pathfinding algorithm] ( https://clementmihailescu.github.io/Pathfinding-Visualizer/ ) ` TODO `
13
13
14
14
## First Prototype
15
- <img src =" mvp1.gif " >
15
+ <img src =" assets/ mvp1.gif" >
16
16
17
17
## How to run?
18
18
```
@@ -22,7 +22,7 @@ java AlgorithmVisualizer
22
22
23
23
## Skills Gained
24
24
- Multi-Threading using Swing Worker
25
- - Customising Swing Components
25
+ - Customizing Swing Components
26
26
- Working with Graphics 2D
27
27
- Different sorting algorithms
28
28
Original file line number Diff line number Diff line change @@ -94,19 +94,19 @@ public void actionPerformed(ActionEvent e) {
94
94
sortAlgo .initShuffler ();
95
95
}
96
96
else if (e .getSource () == jbtMerge ) {
97
- sortAlgo .mergeSort (); // Merge sort algotithm
97
+ sortAlgo .mergeSort (); // Merge sort algorithm
98
98
sortAlgo .initShuffler (); // shuffling
99
99
}
100
100
else if (e .getSource () == jbtBubble ) {
101
- sortAlgo .bubbleSort (); // Bubble sort algotithm
101
+ sortAlgo .bubbleSort (); // Bubble sort algorithm
102
102
sortAlgo .initShuffler (); // shuffling
103
103
}
104
104
else if (e .getSource () == jbtInsertion ) {
105
- sortAlgo .insertionSort (); // Insertion algotithm
105
+ sortAlgo .insertionSort (); // Insertion algorithm
106
106
sortAlgo .initShuffler (); // shuffling
107
107
}
108
108
else if (e .getSource () == jbtSelection ) {
109
- sortAlgo .selectionSort (); // Insertion algotithm
109
+ sortAlgo .selectionSort (); // Insertion algorithm
110
110
sortAlgo .initShuffler (); // shuffling
111
111
}
112
112
else if (e .getSource () == jbtStart ) {
File renamed without changes.
File renamed without changes.
File renamed without changes.
You can’t perform that action at this time.
0 commit comments