[SOLVED] 代写 algorithm Java software Comp 251: Assignment 1

30 $

File Name: 代写_algorithm_Java_software_Comp_251:_Assignment_1.zip
File Size: 499.26 KB

SKU: 1784458209 Category: Tags: , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , ,

Or Upload Your Assignment Here:


Comp 251: Assignment 1
Answers must be returned online by October 8th (11:55pm), 2019.
General instructions (Read carefully!)
• Your solution must be submitted electronically on MyCourses.
• To some extent, collaborations are allowed. These collaborations should not go as far as sharing code or giving away the answer. You must indicate on your assignments (i.e. as a comment at the beginning of your java source file) the names of the people with whom you collaborated or discussed your assignments (including members of the course staff). If you did not collaborate with anyone, you write “No collaborators”. If asked, you should be able to orally explain your solution to a member of the course staff.
• This assignment is due on October 8th at 11h55:00 pm. It is your responsibility to guarantee that your assignment is submitted on time. We do not cover technical issues or unexpected difficulties you may encounter. Last minute submissions are at your own risk.
• This assignment will be submitted in three components. The programming component, worth 40 points, will be submitted in the HW1 – Programming submission folder. The short answer component, worth 30 points, will be submitted on MyCourses, in the HW1 Quiz. The long answer component, worth 30 points, will be submitted in the HW1 – Long Answer submission folder. Make sure you submit in the right folder.
• Multiple submissions are allowed before the deadline. We will only grade the last submitted file. Therefore, we encourage you to submit as early as possible a preliminary version of your solution to avoid any last minute issue.
• Late submissions can be submitted for 24 hours after the deadline, and will receive a flat penalty of 20%. We will not accept any submission more than 24 hours after the deadline. The submission site will be closed, and there will be no exceptions, except medical.
• In exceptional circumstances, we can grant a small extension of the deadline (e.g. 24h) for medical reasons only. However, such request must be submitted before the deadline, and justified by a medical note from a doctor, which must also be submitted to the McGill administration.
• Violation of any of the rules above may result in penalties or even absence of grading. If anything is unclear, it is up to you to clarify it by asking either directly the course staff during office hours, by email at ([email protected]) or on the discussion board on myCourses (recommended). Please, note that we reserve the right to make specific/targeted announcements affecting/extending these rules in class and/or on the website. It is your responsibility to monitor the course website and MyCourses for announcements.
1

• The course staff will answer questions about the assignment during office hours or in the online forum. We urge you to ask your questions as early as possible. We cannot guarantee that questions asked less than 24h before the submission deadline will be answered in time. In particular, we will not answer individual emails about the assignment that are sent sent the day of the deadline.
Programming component
• You are provided some starter code that you should fill in as requested. Add your code only where you are instructed to do so. You can add some helper methods. Do not modify the code in any other way and in particular, do not change the methods or constructors that are already given to you, do not import extra code and do not touch the method headers. The format that you see on the provided code is the only format accepted for programming questions. Any failure to comply with these rules will result in an automatic 0.
• The starter code includes a tester class. If your code fails those tests, it means that there is a mistake somewhere. Even if your code passes those tests, it may still contain some errors. We will grade your code with a more challenging set of examples. We therefore highly encourage you to modify that tester class, expand it and share it with other students on the discussion board. Do not include it in your submission.
• Your code should be properly commented and indented.
• Do not change or alter the name of the files you must submit. Files with the wrong
name will not be graded. Make sure you are not changing file names by duplicating them.
For example, main (2).java will not be graded. Make sure to double-check your zip file.
• Do not submit individual files. Include all your files into a .zip file and, when appropriate,
answer the complementary quiz online on MyCourses.
• You will automatically get 0 if the files you submitted on MyCourses do not compile.
Long Answer component
• The long answer is divided into several components. Please clearly separate the sections in your solution. Presentation points will be granted to full solutions that are correctly presented. A solution is considered correctly presented when it is:
1. Written with a text editing software with equation formatting like LATEX. Unformatted equations like (3(x+5)+5)/(3x+4) will not be graded.
2. If written by hand, scanned with a correctly functioning scanner with sufficient contrast to be easily readable. Pictures of assignments will not be graded.
3. Clean looking, with no crossed out regions or ink/eraser smearing.
• Be brief and to the point in the solution to the long answer questions. You will be provided with the maximum number of words (not including equations) your solution should contain. You can skip all the information that is already provided in the task description and start immediately with the first step of your solution. Show your work.

Questions
Exercise 1 (40 points). Building a Hash Table We want to compare the performance of hash tables implemented using chaining and open addressing. In this assignment, we will consider hash tables implemented using the multiplication and linear probing methods. We will (respectively) call the hash functions h and g and describe them below. Note that we are using the hash function h to define g.
Collisions solved by chaining (multiplication method): h(k) = ((A · k) mod 2w) >> (w − r) Open addressing (linear probing): g(k, i) = (h(k) + i) mod 2r
In the formula above, r and w are two integers such that w > r, and A is a random number
such that 2w−1 < A < 2w. In addition, let n be the number of keys inserted, and m the num-berofslotsinthehashtables. Here,wesetm=2r andr=⌈w/2⌉. Theloadfactorαisequalto n. mWe want to estimate the number of collisions when inserting keys with respect to keys and the choice of values for A.We provide you a set of three template files within COMP251HW1.zip that you will complete. This file contains three classes, a main class and one for each hash function. Those contain several helper functions, namely generateRandom that enables you to generate a random number within a specified range. Details on which functions are included, how to use them, and where to add in your code can be found as comments in the java files. Please read them with attention.Your first task is to complete the two java methods Open_Addressing.probe and Chaining.chain. These methods must implement the hash functions for (respectively) the linear probing and mul- tiplication methods. They take as input a key k, as well as an integer 0 ≤ i < m for the linear probing method, and return a hash value in [0, m[.Next, you will implement the method insertKey in both classes, which inserts a key k into the hash table and returns the number of collisions encountered before insertion, or the number of collisions encountered before giving up on inserting, if applicable. Note that for this exercise as well as for the rest of the homework, we define the number of collisions in open addressing as the number of keys encountered, or “jumped over” before inserting or removing a key. For chaining, we simply consider the number of other keys in the same bin at the time of insertion as the number collisions. You can assume the key is not negative.You will also implement a method removeKey, this one only in Open_Addressing. This method should take as input a key k, and remove it from the hash table while visiting the minimum num- ber of slots possible. Like insertKey, it should output the number of collisions. If the key is not in the hash table, the method should simply not change the hash table, and output the number of slots visited. You will notice from the code and comments that empty slots are given a value of −1. If applicable, you are allowed to use a different notation of your choice for slots containing a deleted element.For this assignment, you will need to submit a zip file containing the completed version of the three provided java files. Submit them in the HW1 – Programming submission folder on MyCourses. Exercise 2 (20 points). Inserting keys This section is answerable through MyCourses. Note that you MUST show your work and use your own results (in main.java) to answer those ques- tions. Answers to this quiz that would not match the results presented in your main class will be considered plagiarism (refer to course outline).For this exercise, you will be given two lists of keys. Each list will come with a value of A in the hash function. You will find your two lists by opening the HW1_keys.csv file, and finding your student ID.2.1 – 10 points – Answer on MyCoursesFor each list of keys, you will insert the contents of the list into your hash table, using chaining to resolve collisions. Compare the number of collisions between the two sets, and indicate which set causes significantly more collisions (or if they cause a similar number of collisions). Answer on MyCourses, in the assignment quiz.2.2 – 10 points – Answer on MyCoursesWhich hashing method do you think will, in general, work the best for each set of keys, between chaining and open addressing? Answer on the assignment quiz.Before starting Exercise 3Exercise 3 is the long answer section of the assignment. Grading 860 long answers is a significant challenge, so please pay careful attention to the formatting guidelines (see Page 2) to help us grade you quickly and accurately.Exercise 3 (40 points). Least common multiple This problem aims to study an algorithm that computes, for an integer n ∈ N, the least common multiple (LCM) of integers ≤ n.For a given integer n ∈ N, let P = px1px2 ···pxk, where p ,p ,··· ,p is a strictly increasing n12k12ksequence of prime numbers between 2 and n and for each i ∈ {1, · · · k}, xi is the integer such that pxi ≤n

Reviews

There are no reviews yet.

Only logged in customers who have purchased this product may leave a review.

Shopping Cart
[SOLVED] 代写 algorithm Java software Comp 251: Assignment 1
30 $