ASSIGNMENT 03 Solution

$29.99 $18.99

ABOUT This assignment contains several small problems. We will need the starter code and the output (part E) provided here: URL: http://csc220.ducta.net/Assignments/Assignment-03-Code.zip PART A – Introduction to Sorting, 9 points Please use this array of integers for the A.1, A.2, and A.3 problems: 9 5 9 8 3 3 6 2 9 7 6 1…

You’ll get a: . zip file solution

 

 

Description

Rate this product

ABOUT

This assignment contains several small problems. We will need the starter code and the output (part E) provided here:

PART A – Introduction to Sorting, 9 points

Please use this array of integers for the A.1, A.2, and A.3 problems: 9 5 9 8 3 3 6 2 9 7 6 1

  • Use pen & paper to show our work and answers. We can scan/snapshot our work and include the images in our report.

  • Use code to demonstrate our approaches and solutions. Submit code and include screenshots of output in our report.

  • Each of these problems is worth 3 points.

CSC 220.02+.03

ASSIGNMENT 03

SPRING 2020 TA

2. 3 points — After each of the following statements

3. 3 points — After each of the following statements

executes, what are the contents of the deque? Please explain. executes, what are the contents of the priority queue? Please

explain.

DequeInterface<String> myDeque = new

PriorityQueueInterface<String> myPriorityQueue =

LinkedDeque<>();

new LinkedPriorityQueue<>();

myDeque.addToFront(“Jim”);

myPriorityQueue.add(“Jim”);

myDeque.addToFront(“Jess”);

myPriorityQueue.add(“Josh”);

myDeque.addToBack(“Jen”);

myPriorityQueue.add(“Jon”);

myDeque.addToBack(“Josh”);

myPriorityQueue.add(“Jane”);

String name = myDeque.removeFront();

String name = myPriorityQueue.remove();

myDeque.addToBack(name);

myPriorityQueue.add(name);

myDeque.addToBack(myDeque.getFront());

myPriorityQueue.add(myPriorityQueue.peek());

myDeque.addToFront(myDeque.removeBack());

myPriorityQueue.add(“Jose”);

myDeque.addToFront(myDeque.getBack());

myPriorityQueue.remove();

It is OK to assume that the alphabetically earliest string has the

highest priority.

PART D – Queue and Deque, Circular Doubly Linked Chain, 15 points

Use a circular doubly linked chain to implement the ADT deque.

In a doubly linked chain, the first and last nodes each

Empty deque: true

[FRONT] Jerry << Tom << Minnie << Mickey << …

contain one null reference, since the first node has no previous

[BACK] Sylvester >> Goofy >> Donald >> …

node and the last node has no node after it. In a circular doubly

linked chain, the first node references the last node, and the

Empty deque: true

last node references the first. Only one external reference is

Sayōnara

necessary—a reference to the first node—since we can quickly

-> removeFront found deque empty

get to the last node from the first node.

-> removeBack found deque empty

The code for this problem is provided in the Assignment-03-Code.zip archive. Our output must be identical to the output to the right.

PART E – Priority Queue, 15 points

The San Francisco State University’s One Stop Student Services Center asks us to recommend solutions for their service lines.

  • The starter code for this problem is provided in the Assignment-03-Code.zip archive.

  • Our output must be identical to the complete output provided in the ZIP archive: The_Complete_Sample_Run.pdf

  • The below is a portion of the output for preview purposes. It is NOT the complete output.

  • Please analyze the complete output thoroughly before programming a solution.

————————————————————-

SFSU ONE STOP STUDENT SERVICES CENTER

————————————————————-

Priority: default

Mickey

Mouse

1002

3.70

1

17

Minnie

Mouse

1001

3.90

10

15

Milo

Dog

1004

3.70

7

17

Goofy

Dog

1007

2.30

17

1

Daisy

Duck

1003

1.70

1

17

Pluto

Dog

1005

3.70

7

17

Donald

Duck

1006

3.10

5

2

Happy coding and Thank you!

Updated: 4/6/2020 10:12 PM