COP3503 – Lab 4 – File I/O Solved

34.99 $

Category: Tags: , , , , ,

Description

5/5 - (1 vote)

Overview
For this assignment, you are going to load a series of files containing data and search the loaded data for specific criteria. That might sound a bit dry, but the files contain information about LEGO sets, and everyone loves LEGO! The structure of this assignment is a bit open-ended; you can solve this problem in any way that you see fit.
Description
First things first, the files: There are 3 main data files that you will be loading in this assignment:
• lego1.csv
• lego2.csv
• lego3.csv
The data that you will be loading is information about a LEGO set:
1. Its set number (really a string, something like: 10195-1)
2. The theme it comes from (City, Technic, Star Wars, etc.)
3. The name of the set
4. How many parts and minifigures it contains (if any)
5. Its price in US dollars – for this variable, use a double instead of a float
Your goal is to read this from 1 of or more of these files, store the data, and then search it based on a few different criteria.
Main.cpp is the only file required for this assignment, but you are free to write any class/functions that you see fit to assist you solve this problem. Main.cpp has some structure to it already to help you get started. Take some time to think about the problem, and how you might go about this before diving in.
Searches
The different searches you will perform will be based on a menu that might look like this:
1. Most expensive
2. Largest piece count
3. Search for set name containing… 4. Search themes…
5. Part count information 6. Price information
7. Minifigure information
8. If you bought one of everything…

Most Expensive
The most expensive set is: Name: Super Awesome Building Set
From the sets that were loaded, which is the most Number: 99923
expensive? Theme: City

Price: $21.99
Minifigures: 4
Piece count: 286
Largest piece count

From the sets that were loaded, which has the most parts? The set with the highest parts count:

Name: Really Big Set
Number: 22231
Theme: Technic
Price: $249.99
Minifigures: 0
Piece count: 5211
Search for set names containing…

Get a string as input from the user. Then search all sets and their names to see if they contain the search term.

There could be a lot of sets matching the search term, so show them in a more concise, list format with the set ID, name, and price. If no sets are found, report that as well. Sets matching “Fire Station”:

49281 Fire Station $19.99
9381 Big Fire Station $49.99

-OR-

No sets found matching that search term
Search for set themes containing…

Ditto , but for the theme of the set instead Sets matching “City”:

1234 Police Station $29.99
49281 Fire Station $19.99
// And TONS more… LEGO City is huge!

Part count information

Show the average parts for all the loaded sets Average part count for 601 sets: 492

Price information
Average price information for 601 sets: $500

Show the average, minimum and maximum Set with the minimum price:
prices. [Set data goes here]

Set with the maximum price: [Set data goes here]

Minifigure information

Show the average number of minifigures, and the set information for the set with the most minifigures Average number of minifigures: 8 Set with the most minifigures:
Name: PG2 Lecture
Number: COP3503
Theme: Education
Price: $299.99
Minifigures: 310
Piece count: 938
If you bought one of everything…
If you bought one of everything…

How much would it costs? How many parts and It would cost: $9999.99
minifigures would you have? You would have 200207 pieces in your collection You would have an army of 3000 minifigures!
Reading Mixed Data From Files
When reading a text file, oftentimes the data initially gets read in as a string. If the final storage variable isn’t a string (such as a person’s age, or the price of something), you must convert it before storing/using it in its numeric form. In the <string> header file, there are a number of functions to help you convert. These function converts a STRING_TO_SOMETHING, and are named like stoi (string to integer), stof (string to float), etc.
Example:
ifstream someFile(“Example.txt”); string someString; someFile >> someString;

// that one string into many smaller strings, and convert as necessary. int convertToInt = stoi(someString);
Tips
1. Choices you make at the start of a program can have a big impact on how the rest of the program gets developed. Think about how you want to store the information retrieved from the file, and how you could easily pass that data to various functions you might write.
2. If you have a process for easily loading and accessing the data, the rest of the functionality should be a lot easier to write. Make sure the loading process is all taken care of before worrying about anything else.
3. The code to load 1 file containing 1 piece of data (no matter how complex that data is) should not be much different than loading 100 files, each containing 100 elements. Start by thinking about just 1 element from the file first. Do the values you read match the values in the file? What about 2 entries, does everything add up? Then 3, 4, etc.
4. When passing containers of data, make sure you pass them by REFERENCE, not by value. Creating copies of massive data sets is generally a bad, bad thing… unless you specifically need to duplicate the data. If not? Then pass by reference (in C++ that means either by pointer or the reference data type)

Sample Outputs
Whi ch file (s ) t o open?
1 . legol . csv
2 . lego2 . csv
3 . l ego3 . csv
4 . All 3 files Total number of sets : 767
The most expensive set i s : Name : Death Star
Number : 75159
Theme : Star Wars
Pri ce : $499 . 99
Minifigures : 27 Piece count : 4016

Sets matching “Police” :
71021 Classi c Poli ce Officer $3 . 99
75046 Coruscant Police Gunship $49 . 99 281: Fire and Police Stati on $50 . 00 303~1 Swamp Po~ice Helicopter $3 . 49
6533 Police 4 x 4 $4 . 75
30282 Super Secret Police Enforcer $4 . 99
7236 Police Car $5 . 99
6684 Police Pat rol Squad S6 . 50
60006 Police A~V $6 . 99
7279 Police Minifiqure Col lection $9 . 99
10720 Police Helicopter Chase $9 . 99

  • lab4-ygzqgd.zip