Part 1: An Implementation of DefaultMap (17 points) You’ll provide a fast implem

Place your order now for a similar assignment and have exceptional work written by our team of experts, At affordable rates

For This or a Similar Paper Click To Order Now

Part 1: An Implementation of DefaultMap (17 points)
You’ll provide a fast implementation of an interface called DefaultMap in MyHashMap.java.
You will implement all the methods defined in the DefaultMap interface. Using amortized analysis, you must ensure that each has the specified big-O bound and argue why based on the documentation of any libraries you use or based on your implementation. In each, n represents the number of entries in the map.
Here is a helpful link to learn more about amortized analysis that gives an example with a dynamic array: http://www.cs.cornell.edu/courses/cs3110/2011sp/Le…
put, required O(1)
replace, required O(1)
remove, required O(1)
set, required O(1)
get, required O(1)
size, required O(1)
isEmpty, required O(1)
containsKey, required O(1)
keys, required O(n)
In MyHashMap.java you will implement a single constructor that takes two arguments (the initial capacity and the load factor). This is where you will initialize the instance variables.
HashMapEntry
Within MyHashMap.java, you are provided the private inner class HashMapEntry. Use this class to represent your key value pairs in your HashMap. Note it implements the DefaultMap.Entry interface. Each HashMapEntry object has two instance variables (K key, V value). Use the getters/setters from this class to get the key values and set the values.
Instance Variables
loadFactor: the load factor for when to increase the capacity of the HashMap (default = 0.75)
capacity: the overall capacity of the HashMap (initial default = 16)
size: the number of elements in the HashMap
buckets or entries: If you would like to using Separate chaining conflict resolution, use the List array buckets. If you would like to use Linear Probing for your conflict resoultion, use the array entries. For either case, buckets or entries is where your elements will be stored. However, we strongly recommend handling collision using separate chaining.
Note: initialCapacity must be non-negative and loadFactor must be positive. If either of these conditions are violated, you must throw an IllegalArgumentException in your constructor with the appropriate error message.
The specifications for the other methods are defined in header comments in the DefaultMap.java file, which you should follow. You may use any methods in the Java collections library to implement them (including helpers like Collections.sort). If you don’t know how to use a particular library method, interface, or class in the standard Java utils, ask! This is an opportunity to learn about the built-in libraries. Note: You are not allowed to use the java HashMap library!!!
You may find these useful:
Set
Collection
The pages linked from those may also have useful information. For specific hash map implementation detail, please follow your implementation based on lecture. Your implementation of DefaultMap will be graded automatically by tests that we provide.
Note: Please make sure that you test your MyHashMap implementation thoroughly before proceeding to part 2 as you will be using your implementation of MyHashMap in part 2.
Part 2: File System Implementation (16 points)
You are asked to implement a basic unix file system structure to support files look up methods. It is shown in the log history that users tend to search files either by their names, their directories, or their modified dates. After implementing MyHashMap in part 1, you think that a hash map will be a perfect data structure for this task to perform these searches in an efficient way. Your task is to design a simplified file system structure with a hash map that can support users defined filtering methods while making sure that those filtering methods are performed in an efficient way.
You should only modify FileSystem.java and FileData.java for implementation of the file system.
Note: It’s likely that you need to store multiple files with the same name in your computer, therefore our file system support duplicate files with the same name or date in different directories. However, the name should always be unique in each directory.
FileData
In our file system, a file is represented as a FileData object which contains the information of its name, directory, and last modified date.
Instance VariablesnameThe name of the given file in string format.
dirThe directory of where the file is stored in, represented in a string format.
lastModifiedDateThe date of when the file is last modified, represented in a string format.
MethodsIn FileData.java, you will implement and thoroughly test the following methods:
public FileData(String name, String directory, String modifiedDate)
public String toString()
public FileData(String name, String directory, String modifiedDate)A Constructor that creates an instance of FileData object by intializing its instance variables with the given parameters. You may assume that the parameters passed in to the constructor will be non-null.
public String toString()A method that returns the string representation of FileData by displaying the file information. It should strictly follow the format of {Name: file_name, Directory: dir_name, Modified Date: date}.
FileSystem
In our file system, FileSystem class will be used to represent the entire structure of the file system. You should store file’s information in the instance variable provided to ensure that the look up times are as efficient as possible. You are NOT ALLOWED to add any additional instance variables or to include any additional imports in FileSystem.java.
Instance VariablesnameMapA MyHashMap that uses file name as the key and a list of FileData as the value. *Illustration to show that “test.txt” is an entry within nameMap that uses filename (String) as a key that maps to an arraylist of all fileData with the same filename but in a different directory.
dateMapA MyHashMap that uses file’s date as the key and a list of FileData as the value. *Illustration to show that “02/01/2021” is an entry within nameMap that uses file’s lastModifiedDate (String) as a key that maps to an arraylist of all fileData with the same lastModifiedDate.
MethodsIn FileSystem.java, you will implement and thoroughly test the following methods:
public FileSystem()
public FileSystem(String fileInfo)
public boolean add(String fileName, String directory, String modifiedDate)
public FileData findFile(String name, String directory)
public ArrayList findAllFilesName()
public ArrayList findFilesByName(String name)
public ArrayList findFilesByName(String modifiedDate)
public ArrayList findFilesInMultDir(String modifiedDate)
public boolean removeByName(String name)
public boolean removeFile(String name, String directory)
public FileSystem()Default constructor that creates a new FileSystem object and initializes its instance variable.
public FileSystem(String inputFile)Constructor that creates a new FileSystem object with the given inputFile that contains the file system information. We have provided some skeleton code for reading the contents of the text file. You will need to initailizes FileSystem’s instance variables and populate FileSystem with each file’s information. Each file information is represented by a line formatted as filename, directory, date within the content of inputFile. For example, it could be mySample.txt, /home, 02/01/2021. (Note that since it is a unix type file system, forward slashes are used to represent directory hierarchy). We have also provided a sample file, input.txt, to show how each file information is represented within the inputFile. Feel free to add more data to the file to test your FileSystem implementation thoroughly. You may assume that inputFile parameter is properly formatted and is non-null.
public boolean add(String fileName, String directory, String modifiedDate)This method should create a FileData object with the given file information and add it to the instance variables of FileSystem. This method should return true if the file is successfully added to the FileSystem, and false if a file with the same name already exists in that directory. The default values for filenName, dir, and modifiedDate are “”, “/”, “01/01/2021” in case any of these variables is null.
public FileData findFile(String name, String directory)This method should return a single FileData object with the given name and directory. You should not modify the FileSystem itself. Return null if such a file does not exist.
public ArrayList findAllFilesName()This method should return an array list of string that represents all unique file names across all directories within the fileSystem. You should not modify the FileSystem itself. Return an empty array list if there is no file in the file system yet.
public ArrayList findFilesByName(String name)The find method should return a list of FileData with the given name. You should not modify the FileSystem itself. Return an empty list if such a file does not exist.
public ArrayList findFilesByDate(String modifiedDate)This find method should return a list of FileData with the given modifiedDate. You should not modify the FileSystem itself. Return an empty list if such a file does not exist.
public ArrayList findFilesInMultDir(String modifiedDate)This find method should return a list of FileData with the given modifiedDate that has at least another file with the same file name in a different directory. You should not modify the FileSystem itself. Return an empty list if such a file does not exist.
public boolean removeByName(String name)This method should remove all the files with the given name in the FileSystem. Return true if success, false otherwise. Remove the entry in the hashmap if necessary.
public boolean removeFile(String name, String directory)This method should remove a certain file with the given name and directory. Return true if success, false otherwise. Remove the entry in the hashmap if necessary.
Testing (3 points)
In the starter code, there are three files where you may add tests:
MyHashMapTest.java
FileSystemTest.java
FileDataTest.java
Write at least two tests per file and submit these to Gradescope along with your implementations. This section will be graded based on completion.
Part 3: Gradescope Assignment (9 points)
Gradescope Question
You will write answers to the following question on Gradescope:
For each method in MyHashMap (excluding size and isEmpty), argue why its performance meets the specified required bound.
Style (5 points)
The following files will be graded on style:
MyHashMap.java
FileSystem.java
FileData.java
To find the full style guideline, follow this link: https://docs.google.com/document/d/1XCwv_vHrp1X4vm…
All guidelines that we will be following this quarter are marked in the Style Guidelines document. These are required and will be graded.
On this PA, all guidelines must be followed, they are summarized below:
file headers
method headers (not required for test methods)
Lines cannot be longer than 100 characters
Inconsistent indentation
Lines must not be indented more than 6 times. If you have a need to indent more than 6 levels, build a helper method or otherwise reorganize your code
Test method must have meaningful names
Helper method must have meaningful names
descriptive variable names
magic numbers
Answers for FAQ
FileNotFound ExceptionIf you receive FileNotFound exception when instantiating FileSystem with input.txt in Eclipse Window, make sure to place input.txt in the correct directory since Eclipse for Windows puts the files at the project root, not the bin or src.
Clarification on findFilesInMultDirFor example, if we have following entries in input file: test.txt, /home, 01/01/01 test.txt, /root, 01/01/01 sample.txt, /home, 01/01/01 sample.txt, /root, 02/01/01 text, /home, /02/01/01. Calling findFilesInMultDir(“01/01/01”) should return you an array list of {Name: test.txt, Directory: /home, Modified Date: 01/01/01}, {Name: test.txt, Directory: /root, Modified Date: 01/01/01}, {Name: sample.txt, Directory: /home, Modified Date: 01/01/01}.
Amortized Analysis ExplanationAmortized Analysis allows us to find a tight bound on the worst case. Sometimes data structures will have a costly operation (for example, the HashTable has expandCapacity). However, this operation is not performed very often. Because of this, the data structure should not be considered a costly structure. This is when we would use amortized analysis to average out the costly operations when finding the worst case.
Example: HashTable set() In the worst case, this would be O(n).
However, we are not calling expandCapacity at every step, so this is not a tight worst case bound. With amortized analysis, we can look at how often expandCapacity and find the average cost for the operations. In the image below, we have an example of the cost of adding a value n times.
We can see that expandCapacity occurs at the 2nd, 3rd, 5th and 9th steps. We then average the costs over the number of elements that were added and find that the upper bound is 3 which is O(1). So the tight bound for the worst case is O(1). This can also be considered the average case. So in summary, the amortized analysis focuses on the worst-case runtime per operation rather than per algorithm. It allows us to accurately measure the performance of different data structures that might have occasional costly operations.
Submitting
Part 1 & 2On the Gradescope assignment Programming Assignment 6 – code please submit the following files:
MyHashMap.java
MyHashMapTest.java
FileSystem.java
FileSystemTest.java
FileData.java
FileDataTest.java
The easiest way to submit your files is to drag them individually into the submit box and upload that to Gradescope. You may submit as many times as you like till the deadline.
Part 3Please submit your answers to the questions from part 3 on the Gradescope assignment Programming Assignment 6 – questions. You may submit as many times as you like till the deadline.
Scoring (50 points total)
17 points: implementation of DefaultMap [automatically graded]
16 points: implemetnation of FileSystem and FileData [automatically graded]
3 point: MyHashMapTest, FileSystemTest, and FileDataTest graded on completition [manually graded]
9 points: Gradescope Questions [manually graded]
5 points: Style [manually graded]
There is no bad implementation testing on this PA. However, we highly recommend you use the practices you know from testing to thoroughly check that MyHashMap and the FileSystem you wrote work as expected.

For This or a Similar Paper Click To Order Now

SmiteWriter
Calculate your paper price
Pages (550 words)
Approximate price: -

Why Work with Us

Top Quality and Well-Researched Papers

We always make sure that writers follow all your instructions precisely. You can choose your academic level: high school, college/university or professional, and we will assign a writer who has a respective degree.

Professional and Experienced Academic Writers

We have a team of professional writers with experience in academic and business writing. Many are native speakers and able to perform any task for which you need help.

Free Unlimited Revisions

If you think we missed something, send your order for a free revision. You have 10 days to submit the order for review after you have received the final document. You can do this yourself after logging into your personal account or by contacting our support.

Prompt Delivery and 100% Money-Back-Guarantee

All papers are always delivered on time. In case we need more time to master your paper, we may contact you regarding the deadline extension. In case you cannot provide us with more time, a 100% refund is guaranteed.

Original & Confidential

We use several writing tools checks to ensure that all documents you receive are free from plagiarism. Our editors carefully review all quotations in the text. We also promise maximum confidentiality in all of our services.

24/7 Customer Support

Our support agents are available 24 hours a day 7 days a week and committed to providing you with the best customer experience. Get in touch whenever you need any assistance.

Try it now!

Calculate the price of your order

Total price:
$0.00

How it works?

Follow these simple steps to get your paper done

Place your order

Fill in the order form and provide all details of your assignment.

Proceed with the payment

Choose the payment system that suits you most.

Receive the final file

Once your paper is ready, we will email it to you.

Our Services

No need to work on your paper at night. Sleep tight, we will cover your back. We offer all kinds of writing services.

Essays

Essay Writing Service

No matter what kind of academic paper you need and how urgent you need it, you are welcome to choose your academic level and the type of your paper at an affordable price. We take care of all your paper needs and give a 24/7 customer care support system.

Admissions

Admission Essays & Business Writing Help

An admission essay is an essay or other written statement by a candidate, often a potential student enrolling in a college, university, or graduate school. You can be rest assurred that through our service we will write the best admission essay for you.

Reviews

Editing Support

Our academic writers and editors make the necessary changes to your paper so that it is polished. We also format your document by correctly quoting the sources and creating reference lists in the formats APA, Harvard, MLA, Chicago / Turabian.

Reviews

Revision Support

If you think your paper could be improved, you can request a review. In this case, your paper will be checked by the writer or assigned to an editor. You can use this option as many times as you see fit. This is free because we want you to be completely satisfied with the service offered.