Comp250 Assignment4 Mcgill University Fall 2020
Clone this repository to your directory of choice. Add the following .java files to /src/main/java/finalproject
- MyWebGraph.java ∗ Sorting.java ∗ SeachEngine.java ∗ XmlParser.java
Add the following constructor to SearchEngine.java
public SearchEngine(){
this.wordIndex = new HashMap<String, ArrayList<String>>();
this.internet = new MyWebGraph();
}