Answered step by step
Verified Expert Solution
Question
1 Approved Answer
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
Step: 1
Get Instant Access to Expert-Tailored Solutions
See step-by-step solutions with expert insights and AI powered tools for academic success
Step: 2
Step: 3
Ace Your Homework with AI
Get the answers you need in no time with our AI-driven, step-by-step assistance
Get Started