Answered step by step
Verified Expert Solution
Link Copied!

Question

1 Approved Answer

In Java-- Please ensure all classes are complete and instructions are followed completly. Please ensure that all code is commented extensively Using the map ADT

In Java--

Please ensure all classes are complete and instructions are followed completly. Please ensure that all code is commented extensively

Using the map ADT

A map is a data structure that provides a collection containing unique keys associated with a single value.

Operations:

Create empty map

Find key in map

Find value of a given key, if key exists

Insert a key with its associated value, if key does not already exist

Remove a key and its associated value

Implement map ADT in file called mapYourLastName.java, to map email addresses (key) to people's names (value). Both can be Strings.

Your driver class should add at least 3 people, search for 2 people by key (email addresses) and remove all keys when done.

Note from discussion board:

Just like Queue, you made a constructor and methods, here you define a class Map, decide how you are storing key, value pairs (in trees and lists we used nodes, queues we used an array)

Then have a Map() constructor, a method returning a boolean called findKey, a method returning the value of a given key getValue(key) if the key exists, ...

Then you will make a MapTester file, you will write your own here.

Step by Step Solution

There are 3 Steps involved in it

Step: 1

blur-text-image

Get Instant Access to Expert-Tailored Solutions

See step-by-step solutions with expert insights and AI powered tools for academic success

Step: 2

blur-text-image

Step: 3

blur-text-image

Ace Your Homework with AI

Get the answers you need in no time with our AI-driven, step-by-step assistance

Get Started

Recommended Textbook for

Probabilistic Databases

Authors: Dan Suciu, Dan Olteanu, Christopher Re, Christoph Koch

1st Edition

3031007514, 978-3031007514

More Books

Students also viewed these Databases questions

Question

Discuss the different types of leadership

Answered: 1 week ago

Question

Write a note on Organisation manuals

Answered: 1 week ago

Question

Define Scientific Management

Answered: 1 week ago

Question

Explain budgetary Control

Answered: 1 week ago

Question

=+j Enabling a productive global workforce.

Answered: 1 week ago

Question

=+ Are you interested in creating or

Answered: 1 week ago

Question

=+working on a micro-multinational?

Answered: 1 week ago