100% satisfaction guarantee Immediately available after payment Both online and in PDF No strings attached 4.6 TrustPilot
logo-home
Exam (elaborations)

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

Rating
-
Sold
-
Pages
5
Grade
A+
Uploaded on
29-12-2025
Written in
2025/2026

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.

Show more Read less
Institution
Analysis & Design
Course
Analysis & Design









Whoops! We can’t load your doc right now. Try again or contact support.

Written for

Institution
Analysis & Design
Course
Analysis & Design

Document information

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

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 << ", "

Get to know the seller

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 Ohio State University College Of Medicine
View profile
Follow You need to be logged in order to follow users or courses
Sold
71
Member since
1 year
Number of followers
0
Documents
429
Last sold
1 day ago
TestBanks Nerd

Welcome to TestBanks Nerd – the ultimate hub for academic resources. Here, you’ll find a wide selection of test banks, solution manuals, study notes, lecture summaries, practice exams, and past papers carefully curated to help students succeed. Whether you’re preparing for an exam, revising core concepts, or looking for step-by-step solutions, this store provides accurate, reliable, and exam-focused materials across multiple subjects and editions. At TestBanks Nerd, we make studying smarter, faster, and easier.

Read more Read less
3.8

12 reviews

5
6
4
1
3
2
2
2
1
1

Recently viewed by you

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

Frequently asked questions