Skip to content

Commit dbf265a

Browse files
authored
Merge pull request #3 from AdityaPunetha/final
final
2 parents 35378ea + 08c5867 commit dbf265a

34 files changed

+1050
-1154
lines changed

src/Dijiktra'sAlgo/src/mousegraph/MouseGraph.java

-1,028
This file was deleted.

src/sortvisualiser/SortArray.java

+27-41
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ public class SortArray extends JPanel {
3131
* Based on the original 256 bars each being 2x their height
3232
* and 720px window height, or 512/720
3333
*/
34-
private static final double BAR_HEIGHT_PERCENT = 512.0/720.0;
34+
private static final double BAR_HEIGHT_PERCENT = 512.0 / 720.0;
3535
private static final int NUM_BARS = DEFAULT_WIN_WIDTH / DEFAULT_BAR_WIDTH;
3636

3737
private final int[] array;
@@ -41,14 +41,9 @@ public class SortArray extends JPanel {
4141
private String tandComplexity = " ";
4242
private ISortAlgorithm algorithm;
4343
private long algorithmDelay = 0;
44-
<<<<<<< HEAD
4544
private final JSpinner spinner;
46-
//private int arrayChanges = 0; // Number of changes to the array the current algorithm has taken so far
47-
=======
48-
49-
private final JSpinner spinner;
50-
51-
>>>>>>> 6a5781b83e4af42e6dddad64f872c76d885b4356
45+
// private int arrayChanges = 0; // Number of changes to the array the current
46+
// algorithm has taken so far
5247

5348
public SortArray() {
5449
setBackground(Color.DARK_GRAY);
@@ -63,7 +58,7 @@ public SortArray() {
6358
algorithmDelay = (Integer) spinner.getValue();
6459
algorithm.setDelay(algorithmDelay);
6560
});
66-
add(spinner,BorderLayout.LINE_START);
61+
add(spinner, BorderLayout.LINE_START);
6762
}
6863

6964
public int arraySize() {
@@ -74,12 +69,13 @@ public int getValue(int index) {
7469
return array[index];
7570
}
7671

77-
7872
public int getMaxValue() {
79-
return Arrays.stream(array).max().orElse(Integer.MIN_VALUE); //Gets the max value of the array or Integer.MIN_VALUE if there isn't one.//* @return the max value or Integer.MIN_VALUE.
73+
return Arrays.stream(array).max().orElse(Integer.MIN_VALUE); // Gets the max value of the array or
74+
// Integer.MIN_VALUE if there isn't one.//* @return
75+
// the max value or Integer.MIN_VALUE.
8076
}
8177

82-
private void finaliseUpdate(int value, long millisecondDelay, boolean isStep) {
78+
private void finaliseUpdate(int value, long millisecondDelay, boolean isStep) {
8379
repaint();
8480
try {
8581
Thread.sleep(millisecondDelay);
@@ -103,7 +99,6 @@ public void updateSingle(int index, int value, long millisecondDelay, boolean is
10399
array[index] = value;
104100
barColours[index] = 100;
105101

106-
107102
finaliseUpdate(value, millisecondDelay, isStep);
108103
repaint();
109104
}
@@ -124,7 +119,7 @@ public void highlightArray() {
124119

125120
@Override
126121
public Dimension getPreferredSize() {
127-
return new Dimension(DEFAULT_WIN_WIDTH, DEFAULT_WIN_HEIGHT); //Gets the canvas size @return size
122+
return new Dimension(DEFAULT_WIN_WIDTH, DEFAULT_WIN_HEIGHT); // Gets the canvas size @return size
128123
}
129124

130125
public void resetColours() {
@@ -139,8 +134,7 @@ public void paintComponent(Graphics g) {
139134
super.paintComponent(g);
140135
Graphics2D panelGraphics = (Graphics2D) g.create();
141136

142-
try
143-
{
137+
try {
144138
Map<RenderingHints.Key, Object> renderingHints = new HashMap<>();
145139
renderingHints.put(RenderingHints.KEY_ANTIALIASING, RenderingHints.VALUE_ANTIALIAS_ON);
146140
panelGraphics.addRenderingHints(renderingHints);
@@ -156,24 +150,23 @@ public void paintComponent(Graphics g) {
156150
}
157151
}
158152

159-
private void drawBars(Graphics2D panelGraphics)
160-
{
153+
private void drawBars(Graphics2D panelGraphics) {
161154
int barWidth = getWidth() / NUM_BARS;
162155
int bufferedImageWidth = barWidth * NUM_BARS;
163156
int bufferedImageHeight = getHeight();
164157

165-
if(bufferedImageHeight > 0 && bufferedImageWidth > 0) {
166-
if(bufferedImageWidth < 256) {
158+
if (bufferedImageHeight > 0 && bufferedImageWidth > 0) {
159+
if (bufferedImageWidth < 256) {
167160
bufferedImageWidth = 256;
168161
}
169162

170163
double maxValue = getMaxValue();
171164

172-
BufferedImage bufferedImage = new BufferedImage(bufferedImageWidth, bufferedImageHeight, BufferedImage.TYPE_INT_ARGB);
165+
BufferedImage bufferedImage = new BufferedImage(bufferedImageWidth, bufferedImageHeight,
166+
BufferedImage.TYPE_INT_ARGB);
173167
makeBufferedImageTransparent(bufferedImage);
174168
Graphics2D bufferedGraphics = null;
175-
try
176-
{
169+
try {
177170
bufferedGraphics = bufferedImage.createGraphics();
178171

179172
for (int x = 0; x < NUM_BARS; x++) {
@@ -187,43 +180,35 @@ private void drawBars(Graphics2D panelGraphics)
187180
int val = barColours[x] * 2;
188181
if (val > 190) {
189182
bufferedGraphics.setColor(new Color(255 - val, 255, 255 - val));
190-
}
191-
else {
183+
} else {
192184
bufferedGraphics.setColor(new Color(255, 255 - val, 255 - val));
193185
}
194186
bufferedGraphics.fillRect(xBegin, yBegin, barWidth, height);
195187
if (barColours[x] > 0) {
196188
barColours[x] -= 5;
197189
}
198190
}
199-
}
200-
finally
201-
{
202-
if(bufferedGraphics != null)
203-
{
191+
} finally {
192+
if (bufferedGraphics != null) {
204193
bufferedGraphics.dispose();
205194
}
206195
}
207196

208-
panelGraphics.drawImage(bufferedImage, 0, 0, getWidth(), getHeight(), 0, 0, bufferedImage.getWidth(), bufferedImage.getHeight(), null);
197+
panelGraphics.drawImage(bufferedImage, 0, 0, getWidth(), getHeight(), 0, 0, bufferedImage.getWidth(),
198+
bufferedImage.getHeight(), null);
209199
}
210200
}
211201

212-
private void makeBufferedImageTransparent(BufferedImage image)
213-
{
202+
private void makeBufferedImageTransparent(BufferedImage image) {
214203
Graphics2D bufferedGraphics = null;
215-
try
216-
{
204+
try {
217205
bufferedGraphics = image.createGraphics();
218206

219207
bufferedGraphics.setComposite(AlphaComposite.getInstance(AlphaComposite.CLEAR));
220208
bufferedGraphics.fillRect(0, 0, image.getWidth(), image.getHeight());
221209
bufferedGraphics.setComposite(AlphaComposite.getInstance(AlphaComposite.SRC_OVER));
222-
}
223-
finally
224-
{
225-
if(bufferedGraphics != null)
226-
{
210+
} finally {
211+
if (bufferedGraphics != null) {
227212
bufferedGraphics.dispose();
228213
}
229214
}
@@ -233,7 +218,8 @@ private void makeBufferedImageTransparent(BufferedImage image)
233218
public void setName(String algorithmName) {
234219
this.algorithmName = algorithmName;
235220
}
236-
public void setComplexity(String tandCcomplexity){
221+
222+
public void setComplexity(String tandCcomplexity) {
237223
this.tandComplexity = tandCcomplexity;
238224
}
239225

730 Bytes
Binary file not shown.
2.33 KB
Binary file not shown.
469 Bytes
Binary file not shown.
Binary file not shown.
2.97 KB
Binary file not shown.
718 Bytes
Binary file not shown.
Binary file not shown.
Binary file not shown.
1.24 KB
Binary file not shown.
1.24 KB
Binary file not shown.
1.24 KB
Binary file not shown.
1.24 KB
Binary file not shown.
725 Bytes
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
2.13 KB
Binary file not shown.
1.07 KB
Binary file not shown.
1.86 KB
Binary file not shown.
716 Bytes
Binary file not shown.
13.5 KB
Binary file not shown.

0 commit comments

Comments
 (0)