Written by students who passed Immediately available after payment Read online or as PDF Wrong document? Swap it for free 4.6 TrustPilot
logo-home
Document preview thumbnail
Preview 2 out of 5 pages
Exam (elaborations)

CS 300 Analysis & Design – Project Two (7-1) |SNHU | Grade A

Document preview thumbnail
Preview 2 out of 5 pages

This document contains the complete C++ implementation for CS 300 Analysis & Design Project Two, which focuses on building a course planner using maps as the primary data structure. It demonstrates loading course data from a CSV file, storing and sorting courses automatically, printing an ordered course list, and displaying detailed course information including prerequisites.

Content preview

TESTBANK
#include
#include
#include
#include
#include
<sstream>
<string>
<vector>
CS 300 Analysis & Design Project Two (7-1)

<iostream>
<fstream>




SNERD
#include <map>
#include <algorithm>

using namespace std;

/*
* Course structure
* Stores course number, title, and prerequisites
*/
struct Course {
string courseNumber;
string courseTitle;
vector<string> prerequisites;
};

/*
* Converts a string to uppercase
* Ensures consistent searching and sorting
*/
string toUpper(string str) {
transform(str.begin(), str.end(), str.begin(), ::toupper);
return str;
}

/*
* Loads course data from input.txt into the map
* Returns true if successful
*/
bool loadCourses(const string& fileName, map<string, Course>& courses) {
ifstream file(fileName);

// Verify file opened correctly
if (!file.is_open()) {
cout << "ERROR: Unable to open file." << endl;
return false;
}

courses.clear();

, TESTBANK
string line;

// Read each line of the file
while (getline(file, line)) {
if (line.empty()) continue;

stringstream ss(line);




SNERD
string token;
vector<string> tokens;

// Split line by commas
while (getline(ss, token, ',')) {
tokens.push_back(token);
}

// Must have at least course number and title
if (tokens.size() < 2) continue;

Course course;
course.courseNumber = toUpper(tokens[0]);
course.courseTitle = tokens[1];

// Store prerequisites, if any
for (size_t i = 2; i < tokens.size(); i++) {
course.prerequisites.push_back(toUpper(tokens[i]));
}

// Insert course into map (auto-sorted)
courses[course.courseNumber] = course;
}

file.close();
cout << "Data loaded successfully." << endl;
return true;
}

/*
* Prints all courses in alphanumeric order
*/
void printCourseList(const map<string, Course>& courses) {
cout << "Here is a sample schedule:" << endl;

// Map automatically sorts keys
for (const auto& pair : courses) {
cout << pair.second.courseNumber << ", "

Document information

Uploaded on
December 29, 2025
Number of pages
5
Written in
2025/2026
Type
Exam (elaborations)
Contains
Questions & answers
$13.49

Wrong document? Swap it for free Within 14 days of purchase and before downloading, you can choose a different document. You can simply spend the amount again.
Written by students who passed
Immediately available after payment
Read online or as PDF

Seller avatar
Reputation scores are based on the amount of documents a seller has sold for a fee and the reviews they have received for those documents. There are three levels: Bronze, Silver and Gold. The better the reputation, the more your can rely on the quality of the sellers work.
TestbanksNerd
3.4
(18)
Sold
168
Followers
1
Items
460
Last sold
4 days ago



Why students choose Stuvia

Created by fellow students, verified by reviews

Quality you can trust: written by students who passed their tests and reviewed by others who've used these notes.

Didn't get what you expected? Choose another document

No worries! You can instantly pick a different document that better fits what you're looking for.

Pay as you like, start learning right away

No subscription, no commitments. Pay the way you're used to via credit card and download your PDF document instantly.

Student with book image

“Bought, downloaded, and aced it. It really can be that simple.”

Alisha Student

Working on your references?

Create accurate citations in APA, MLA and Harvard with our free citation generator.

Working on your references?

Frequently asked questions