Question: SOLUTION IN JAVA PLEASE City. java File: public class City implements Comparable { private static String [] PROVINCE_CODE = {BC, AB, SK, MB, ON, QC,
SOLUTION IN JAVA PLEASE

City. java File:
public class City implements Comparable { private static String [] PROVINCE_CODE = {"BC", "AB", "SK", "MB", "ON", "QC", "NB", "NS", "PE", "NL", "YT", "NT", "NU"}; private String name; private int population; private String province; public City (String name, String province, int population) { setName(name); setProvince(province); setPopulation(population); } public String getName() { return name; } public void setName(String name) { this.name = name; } public int getPopulation() { return population; } public void setPopulation(int population) { if (population Overview This lab has one activity that relates to searching a sorted array of cities using a binary search. To complete this lab you will need to download the required Lab 6 resources City.java Instructions Binary Search (10 marks) The only activity this week involves writing a binary search method (in a class called BinarySearch) that searches for a city by name and returns the City object if found. Create a sample try with two cities from each Canadian province What needs to be submitted? Please submit the following Java source files on Blackboard: City.java BinarySearch.java Step by Step Solution
There are 3 Steps involved in it
1 Expert Approved Answer
Step: 1 Unlock
Question Has Been Solved by an Expert!
Get step-by-step solutions from verified subject matter experts
Step: 2 Unlock
Step: 3 Unlock
