Answered step by step
Verified Expert Solution
Link Copied!

Question

1 Approved Answer

C++ Assignment. You will need to complete the following tasks. If you could do the code through Linux that would be great for me. You

C++ Assignment. You will need to complete the following tasks. If you could do the code through Linux that would be great for me.

You should have all of these files at the end: activity.h; activity.cpp; activitylist.h; activitylist.cpp; main.h; main.cpp; activities.txt; algorithm.pdf

Write an interactive text based menu interface (using a loop) that will allow the user to

Enter information for a new activity.

Display information for all the activities in the database sorted by activity name with index number for each activity.

Display information for all the activities in the database with the same Type.

Remove an activity by index.

Search for activities by a certain activity name.

Quit

For each activity, you need to keep track of:

Activity name (e.g., Skiing)

Activity location (e.g., Mt Hood Meadows)

Activity Level (e.g., Easy, Difficult, Not for the faint of heart etc.)

Rating (e.g., 1-10 about how fun the experience is)

Type: athletic, food, arts, games, or others - have about 5 different Types of activities for the user to choose from.

Allow the program to keep looping until the user wants to quit. When the program starts, it should load the tasks from an external file (activities.txt) into memory.

When it loads the data into the array, it should insert them sorted alphabetically by last name. Do not use a sorting algorithm - as you insert the activity into the array, make sure they are inserted in the right position.

When a user enters information about the new activity, the program needs to read them in, and insert them in the correct position.

When the user quits the program, save them in memory and eventually write them to the external data file (activities.txt). The file format could look like: (you can use enum or named constants for Type)

Skiing;Mt Hood Meadows;Difficult;6;0

Wine Making;Umpqua Valley;Complicated;9;1

Catan;Epic Gaming;Easy;4;3

Oil Painting;Fun Studios;Tricky;6;2

Pottery;Fun Studios;Easy;7;2

Snowboarding;Mt Hood Meadows;Not for Faint of heart;8;0

The ';' is used as a delimiter or field separator. Each record ends with a new line character.

The numbers 0, 1, 2, 3, and 4 identify the Type that the activity belongs to. For example, 0 could be Athletics, 1 could be Food, 2 could be Arts, 3 could be Games, and 4 could be Others.

----------------------------------------------------------

Use a Class named Activity to model each activity. For the string attributes, such as activity name, activity location, and activity level, you are required to use C-string, a character array terminated by \0. You should use the library instead of the String class. You can have a maximum of 51 characters for each C-string (50 + 1 for the null character).

For the Type attribute, you can use enum or named integer constants.

You may not use any while(true) loops or any break statements inside of while loops.

No global variables.

You must do data validation for any required responses and numbers - for example if you have a set of choices for the Type, then you must validate that the user enters a Type within the choice list. You must validate that the rating is between 1 and 10.

Must follow the C++ Style guidelines just like your other assignments.

Use a Class named ActivityList to model the collection of activities. You are required to use an array of Activity to implement ActivityList. You can have a maximum of 30 activities in your list.

When using class, please make sure you encapsulate the data which means make all the instance data members private and provide accessor methods and mutator methods to access and manipulate the data.

Sample Run

The below sample run is an example of how the output should look.

Welcome!

This program will help you manage your activities.

Pick an option from below:

(a)Add a new activity

(b)List activities by name

(c)List activities by location

(d)List activities by Type

(e)Remove an activity

(f)Search by activity name

(q)Quit

b

1. Catan;Epic Gaming;Easy;4;Games

2. Oil Painting;Fun Studios;Tricky;6;Arts

3. Pottery;Fun Studios;Easy;7;Arts

4. Skiing;Mt Hood Meadows;Difficult;6;Athletics

5. Snowboarding;Mt Hood Meadows;Not for Faint of heart;8;Athletics

6. Wine Making;Umpqua Valley;Complicated;9;Food

Pick an option from below:

(a)Add a new activity

(b)List activities by name

(c)List activities by location

(d)List activities by Type

(e)Remove an activity

(f)Search by activity name

(q)Quit

p

Invalid option!! Please try again!

Pick an option from below:

(a)Add a new activity

(b)List activities by name

(c)List activities by location

(d)List activities by Type

(e)Remove an activity

(f)Search by activity name

(q)Quit

d

Enter Type number(0-Athletics, 1-Food, 2-Arts, 3-Games, and 4-Others): 0

Skiing;Mt Hood Meadows;Difficult;6;Athletics

Snowboarding;Mt Hood Meadows;Not for Faint of heart;8;Athletics

Pick an option from below:

(a)Add a new activity

(b)List activities by name

(c)List activities by location

(d)List activities by Type

(e)Remove an activity

(f)Search by activity name

(q)Quit

C

Enter location name: Hood Meadows

1. Skiing;Mt Hood Meadows;Difficult;6;Athletics

2. Snowboarding;Mt Hood Meadows;Not for Faint of heart;8;Athletics

Pick an option from below:

(a)Add a new activity

(b)List activities by name

(c)List activities by location

(d)List activities by Type

(e)Remove an activity

(f)Search by activity name

(q)Quit

e

1. Catan;Epic Gaming;Easy;4;Games

2. Oil Painting;Fun Studios;Tricky;6;Arts

3. Pottery;Fun Studios;Easy;7;Arts

4. Skiing;Mt Hood Meadows;Difficult;6;Athletics

5. Snowboarding;Mt Hood Meadows;Not for Faint of heart;8;Athletics

6. Wine Making;Umpqua Valley;Complicated;9;Food

Pick the index to remove: 4

Activity removed!

1. Catan;Epic Gaming;Easy;4;Games

2. Oil Painting;Fun Studios;Tricky;6;Arts

3. Pottery;Fun Studios;Easy;7;Arts

4. Snowboarding;Mt Hood Meadows;Not for Faint of heart;8;Athletics

5. Wine Making;Umpqua Valley;Complicated;9;Food

Pick an option from below:

(a)Add a new activity

(b)List activities by name

(c)List activities by location

(d)List activities by Type

(e)Remove an activity

(f)Search by activity name

(q)Quit

a

Enter the activity name (50 characters or less): Rowing

Enter the activity location (50 characters or less): Oaks Amusement Park

Enter the activity level : Tricky

Enter the activity rating : aaa

Invalid rating! Please enter a valid rating!

Enter the activity rating : 8

Enter Type number(0-Athletics, 1-Food, 2-Arts, 3-Games, and 4-Others): 0

Activity added!

1. Catan;Epic Gaming;Easy;4;Games

2. Oil Painting;Fun Studios;Tricky;6;Arts

3. Pottery;Fun Studios;Easy;7;Arts

4. Rowing;Oaks Amusement Park;Tricky;8;Athletics

5. Snowboarding;Mt Hood Meadows;Not for Faint of heart;8;Athletics

6. Wine Making;Umpqua Valley;Complicated;9;Food

Pick an option from below:

(a)Add a new activity

(b)List activities by name

(c)List activities by location

(d)List activities by Type

(e)Remove an activity

(f)Search by activity name

(q)Quit

f

Enter the activity name (50 characters or less): Snowboarding

Activity found!

5. Snowboarding;Mt Hood Meadows;Not for Faint of heart;8;Athletics

Pick an option from below:

(a)Add a new activity

(b)List activities by name

(c)List activities by location

(d)List activities by Type

(e)Remove an activity

(f)Search by activity name

(q)Quit

f

Enter the activity name (50 characters or less): Skiing

Activity not found!!

Pick an option from below:

(a)Add a new activity

(b)List activities by name

(c)List activities by location

(d)List activities by Type

(e)Remove an activity

(f)Search by activity name

(q)Quit

q

Activities written to file! Thank you for using my program!!

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

Harness The Power Of Big Data The IBM Big Data Platform

Authors: Paul Zikopoulos, David Corrigan James Giles Thomas Deutsch Krishnan Parasuraman Dirk DeRoos Paul Zikopoulos

1st Edition

0071808183, 9780071808187

More Books

Students also viewed these Databases questions

Question

What is light? How fast does it travel in a vacuum?

Answered: 1 week ago

Question

summarize the history of work psychology;

Answered: 1 week ago

Question

Does mind reading help or hinder communication?

Answered: 1 week ago