Hello, dear friend, you can consult us at any time if you have any questions, add WeChat: daixieit

Abstract Data Types and Algorithms

COMP 2402 AB - Fall 2022

Assignment #2


Academic Integrity

You may:

.    Discuss general approaches with course staff and your classmates,

.    Use code and/or ideas from the textbook,

.    Use a search engine / the internet to look up basic Java syntax.

You may not:

.    Send or otherwise share code or code snippets with classmates,

.    Use code not written by you, unless it is code from the textbook (and you should cite it in comments),

.    Use a search engine / the internet to look up approaches to the assignment,

.    Use code from previous iterations of the course, unless it was solely written by you,

.    Use the internet to find source code or videos that give solutions to the assignment.

If you ever have any questions about what is or is not allowable regarding academic integrity, please do not hesitate to reach out to course staff. We will be happy to answer. Sometimes it is difficult to             determine the exact line, but if you cross it the punishment is severe and out of our hands. Any student

caught violating academic integrity, whether intentionally or not, will be reported to the Dean and be

penalized. Please see Carleton University'sAcademic Integritypage.

Grading

This assignment will be tested and graded by a computer program (and you can submit as many times as you like; your highest grade is recorded). For this to work, there are some important rules you must follow:

●    Keep the directory structure of the provided zip file. If you find a file in the subdirectory comp2402a2 leave it there.

●    Keep the package structure of the provided zip file. If you find a package comp2402a2; directive at the top of a file, leave it there.


●    Do not rename or change the visibility of any methods already present. If a method or class is public leave it that way.

●    Submit early and often. The submission server compiles and runs your code and gives you a      mark. You can submit as often as you like and only your best submission will count. There is no excuse for submitting code that does not compile or does not pass tests.

●    Write efficient code. The submission server places a limit on how much time it will spend             executing your code, even on inputs with a million lines. For some questions it also places a limit on how much memory your code can use. If you choose and use your data structures correctly,  your code will easily execute within the time limit. Choose the wrong data structure, or use it      the wrong way, and your code will be too slow for the submission server to grade (resulting in a grade of 0).

Submitting and Testing

The submission server will become availablehere. If you have issues, please post to Discord to the teaching team (or the class) and we’ll see if we can help.

Warning: Do not wait until the last minute to submit your assignment. There is a hard 6 second limit on the time each test has to complete. For the largest tests, even an optimal implementation takes 5          seconds, and may take longer if the server is heavily loaded.

Start by downloading and decompressing the Assignment 2 Zip File (comp2402a2.zip), which contains a skeleton of the code you need to write. The skeleton code in the zip file compiles fine. Here's what it     looks like when you unzip and compile it from the command line:

alina@euclid:~$ unzip comp2402a2.zip

Archive:  comp2402a2.zip

inflating: comp2402a2/CapnStackSparrow.java

inflating: comp2402a2/FastSparrow.java

inflating: comp2402a2/SlowSparrow.java

inflating: comp2402a2/Tester.java

inflating: comp2402a2/WhatTheDeque.java

inflating: comp2402a2/WhatTheFast.java

inflating: comp2402a2/WhatTheSlow.java

alina@euclid:~$ javac comp2402a2/*.java

The Tester class, included in the zip file gives a very basic demonstration of the code. As is, Tester throws an exception when it tries to test FastMinStack and FastMinDeque because they're     not implemented yet. Despite the name, Tester does not do thorough testing. The submission server will do thorough testing. To run the Tester from the command line:

alina@euclid:~$ java comp2402a2.Tester

The Assignment

This assignment contains two main parts:

Part 1 [50 marks]: A CapnStackSparrow is an extended stack that supports four main operations: the standard Stack operations push(x) and pop() and the following non-standard operations:

.    max(): returns the maximum value stored on the Stack.

.    ksum(k): returns the sum of the top k elements on the Stack.

The zip file gives an implementation SlowSparrow that implements these operations so that push(x) and pop() each run in 0(1) time, but max() and ksum(k) run in 0(n) time. For this question, you      should complete the implementation of FastSparrow that implements all four operations in 0(1)       (amortized) time per operation. As part of your implementation, you may use any of the classes in the   Java Collections Framework and you may use any of the source code provided with the Java version of the textbook. Don't forget to also implement the size() and iterator()methods.

Think carefully about your solution before you start coding. Here are two hints:

1.    don't use any kind of SortedSet or SortedMap, these all require Ω(log n) time per operation.

2.   think about how the maximum on the stack changes as new elements are pushed. Understanding this will help you design your data structure.

Part 2 [50 marks]: A WhatTheDeque is an extended Deque that supports seven operations: The           standard Deque operations addFirst(x), removeFirst(), addLast(x), and removeLast() and the following non-standard operations:

.    max(): returns the maximum value stored on the Deque.

.    ksumFirst(k): returns the sum of the first k elements on the Deque.

.    ksumLast(k): returns the sum of the last k elements on the Deque.

Again, the zip file provides an implementation WhatTheSlow that supports each of addLast(x) and removeLast() operations in 0(1) time per operation but requires Ω(n) time for the other                 operations.

For this question, you should complete the implementation of WhatTheFast that implements all seven operations in 0(1) (amortized) time per operation. As part of your implementation, you may use any of the classes in the Java Collections Framework and you may use any of the source code provided with the Java version ofthe textbook. Don't forget to also implement the size() and iterator() methods.      Think carefully about your solution before you start coding. Here are two hints:

1.    don't use any kind of SortedSet or SortedMap, these all require Ω(log n) time per operation;

2.   you can write additional functions to support your design choices; consider using one of the techniques we've seen in class for implementing the Deque interface.

Tips, Tricks, and FAQs

How should I approach each problem?

.    Make sure you understand it. Construct small examples, and compute (by hand) the expected output. If you aren’t sure what the output should be, go no further until you get clarification.

.    Now that you understand what you are supposed to output, and you’ve been able to solve it by hand, think about how you solved it and whether you could explain it to someone. How about   explaining it to a computer?

.    If it still seems challenging, what about a simpler case? Can you solve a similar or simplified         problem? Maybe a special case? If you were allowed to make certain assumptions, could you do it then? Try constructing your code incrementally, solving the smaller or simpler problems, then, only expanding scope once you’re sure your simplified problems are solved.

How should I test my code?

.   The Tester class, included in the zip file gives a very basic demonstration of the code.

.    You can modify the Tester class. For example you can change the “20” in

sparrowTest(new FastSparrow(), 20); to a smaller/bigger number to test less/more operations.

.    You should be testing your code as you go along.

.    Use small tests first so that you can compute the correct solution by hand.

.   Test for speed.