VictorDevCode21 / first_project_edd

First project of the course EDD.
0 stars 0 forks source link

Fixed errors in GUI and implemented conflict resolution on BFS method. #23

Closed VictorDevCode21 closed 2 days ago

VictorDevCode21 commented 2 days ago

Fixed "{}" mistakes and some methods that were bug since merge #14

package com.interfaces;

import com.graph.NetworkTrain; import com.graph.LinkedList; import com.graph.Node; import com.graph.BreadthFirstSearch; import com.graph.BFSListener; import com.graph.Station; import com.graph.Stack; import com.graph.Queue;

import com.graph.DepthFirstSearch; import com.graph.StationLoadListener;

import org.graphstream.graph.Graph; import org.graphstream.graph.implementations.SingleGraph; import javax.swing.; import java.awt.; import java.awt.event.ActionEvent; import java.awt.event.ActionListener; import java.io.IOException;

import java.nio.file.Files; import java.nio.file.Paths; import java.util.HashMap; import java.util.HashSet; import java.util.Map; import java.util.Set; import org.json.JSONArray; import org.json.JSONException; import org.json.JSONObject; import org.json.JSONTokener;

/*