Answered step by step
Verified Expert Solution
Link Copied!

Question

1 Approved Answer

CSE 240 Assignment 7 Maximum points: 50 pts Topics: ? C/C++ Syntax ? Pointers ? Functions ? Dynamic Allocation of Memory ? Data Structures: Linked

CSE 240 Assignment 7

Maximum points: 50 pts

Topics:

? C/C++ Syntax

? Pointers

? Functions

? Dynamic Allocation of Memory

? Data Structures: Linked Lists

? Object Orientation

Linked List Specifications:

You are to create a Linked List data structure from scratch. This linked list should be Templated so that any data could be stored within it.

For a maximum of B on specifications you can make the linked list only store Integers.

The primary goal of this assignment is to make a Linked List that you can use and re-use. The Linked List itself is the majority of the specifications grade.

Specifications Scoring Breakdown:

Templated Linked List + Josephus Problem 100% of specifications Templated Linked List only 80% of specifications Integer Linked List + Josephus Problem 80% of specifications Integer Linked List only 70% of specifications

BIG GIANT NOTE TEMPLATES AND FILES

When you use a templated type in C++ ALL templated code must be done in the .h file. This means that ALL of your methods will be defined in the .h file as well as your class.

You should still forward declare Classes above then Methods below.

Your .h file should have your LinkedList class and your Node class and the method definitions for both. Remember to use your :: operator correctly.

Feel free to use friendship if needed. 

You will create a Linked List Class and a Node Class/Struct The Linked List should contain the following methods in its public interface:

? Constructor

? Destructor

? AddToFront(T data) create a node containing T data and add it to the front of the

list

? AddToEnd(T data) create a node containing T data and add it to eh end of the list

? AddAtIndex(T data, int index) create a node containing T data and add it to the

list at index, return boolean for success or failure (optional: you could also

return an integer with failure codes since this method can fail multiple ways)

? NextNode Move the current pointer to the next node, wraps to front if it

 navigates past the end 

? InsertAfterCurrent(T data) Create a node containing T data and insert it after

 wherever the current pointer is pointing 

? RemoveCurrent() Delete the current item and return its contents

? RemoveAtIndex(int index) delete the index # node in the list and return its

contents

? RemoveFromFront() Delete first item and return its contents

? RemoveFromEnd() Delete last item and return its contents

? RemoveFirst(T data) find first instance of T data and remove it

? RemoveAll(T data) find each instance of T data and remove it

? ElementExists(T data) Returns a T/F if element exists in list

? Find(T data) Look for data in the list, return a pointer to its node

? IndexOf(T data) returns an index of the item in the list (zero-based)

? RetrieveFront returns the data contained in the first node, does not delete it

? RetrieveEnd returns the data contained in the last node, does not delete it

? Retrieve(int index) returns the data contained in node # index, does not delete

it, returns null if index is out of bounds or data does not exist

? ToArray Create an array from the contents of the list and return it

? Empty Empty out the list, delete everything

? Length How many elements are in the list

More methods private or public should be created as needed to facilitate the functionality of the Interface methods. If you feel your list needs more functionality, feel free to create it.

Node Class

? Constructor

? Destructor

? Getters & Setters

The node class should be fairly rudimentary. It should be templated so you can store anything in it.

Josephus Problem - Linked Lists

Description:

Josephus Problem 

"There are people standing in a circle waiting to be executed. After the first man is executed, certain number of people are skipped and one man is executed. Then again, people are skipped and a man is executed. The elimination proceeds around the circle (which is becoming smaller and smaller as the executed people are removed), until only the last man remains, who is given freedom.

The task is to choose the place in the initial circle so that you survive (are the last one remaining)."

-- Wikipedia, http://en.wikipedia.org/wiki/Josephus_problem Assume that the number of people, P, in the circle may be any number between zero

and one hundred. 

Assume that every Nth person around the circle is killed each turn, where N is an integer between one and twenty.

Specifications:

? Create an application in C++ that uses a linked list to represent the circle of people, numbered from 1 to P.

? Acquire the values P and N from the user at runtime via console input.

? Output the the individual that survives the mass execution.

Flash Version

? http://webspace.ship.edu/deensley/flash/JosephusProblem.html There are several Java applet versions of this problem to check your work as you

debug.

? http://www.wou.edu/~burtonl/josephus.html o This applet lets you choose how many people are in the circle and

 tells you who survives if every n die 

Grading of Programming Assignment

The TA will grade your program following these steps: (1) Compile the code. If it does not compile, If it does not compile you will

receive a U on the Specifications in the Rubric.

(2) The TA will read your program and give points based on the points allocated to each component, the readability of your code (organization of the code and comments), logic, inclusion of the required functions, and correctness of the implementations of each function.

Rubric:

What to Submit?

You are required to submit your solutions in a compressed format (.zip). Zip all files into a single zip file. Make sure your compressed file is labeled correctly - lastname_firstname7.zip.

For this home assignment, the compressed file MUST contain the following:

? Makefile

? README.txt instructions for using the makefile

? lastname_firstname7.cpp where you main/josephus problem is

? lastname_linkedList.h where your linked list/node code is

? any other code/library files you create or use for the sake of the

assignment No other files should be in the compressed folder.

If multiple submissions are made, the most recent submission will be graded, even if the assignment is submitted late.

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

Oracle 10g Database Administrator Implementation And Administration

Authors: Gavin Powell, Carol McCullough Dieter

2nd Edition

1418836656, 9781418836658

More Books

Students also viewed these Databases questions