Question
pseudocode needed for the below code // forward declarations double strToDouble(string str, char ch); // define a structure to hold bid information struct Bid {
pseudocode needed for the below code
// forward declarations double strToDouble(string str, char ch);
// define a structure to hold bid information struct Bid { string bidId; // unique identifier string title; string fund; double amount; Bid() { amount = 0.0; } };
//============================================================================ // Linked-List class definition //============================================================================
class LinkedList {
private: // FIXME (1): Internal structure for list entries, housekeeping variables
struct Node { Bid _bid; Node* next; Node* tail; Node() { next = nullptr; }
// Constructor override to init a Node with Bid Node(Bid bid) { _bid = bid; next = nullptr; } };
Node* head; Node * tail; int size = 0;
public: LinkedList(); virtual ~LinkedList(); void Append(Bid bid); void Prepend(Bid bid); void PrintList(); void Remove(string bidId); Bid Search(string bidId); int Size(); };
LinkedList::LinkedList() { // FIXME (2): Initialize housekeeping variables head = nullptr; tail = nullptr; }
LinkedList::~LinkedList() { }
void LinkedList::Append(Bid bid) { // FIXME (3): Implement append logic Node* node = new Node(bid); if(head == nullptr) { // If there is ever only an element head = node; } else { if(tail != nullptr) { // Set the next tail to be the current node tail->next = node; } } tail = node; size++; }
void LinkedList::Prepend(Bid bid) { // FIXME (4): Implement prepend logic Node* toPrepend = new Node(bid); if(head != nullptr) { // Make the next pointer of the Node to be prepend = head toPrepend->next = head; } // Since the new head is toPrepend Node head = toPrepend; size++; // increase the size }
void LinkedList::PrintList() { // FIXME (5): Implement print logic Node* currentNode = head; while(currentNode != nullptr) { cout << currentNode->_bid.bidId << ": " <
} }
void LinkedList::Remove(string bidId) { // FIXME (6): Implement remove logic if(head != nullptr) { if(head->_bid.bidId == bidId) { // if the item to be remove happens to be the first one Node* temp = head->next; // Set the temp point to point the next node in head delete head; // delete the head to free up the memory and set the new head to temp head = temp; } }
// Loop thru the list Node* currentNode = head; while(currentNode->next != nullptr) { if(currentNode->next->_bid.bidId == bidId) { // Temprorly save the node to be removed Node* currTmpNode = currentNode->next; // make the currentNode point to the node after the currentTmp node thus // it will skip the node to be deleted currentNode->next = currTmpNode->next; //delete temp node delete currTmpNode; return; // return back to menu } currentNode = currentNode->next; }
}
Bid LinkedList::Search(string bidId) { // FIXME (7): Implement search logic Node* currentNode = head; while(currentNode != nullptr) { if(currentNode->_bid.bidId == bidId) { // if the currenNode holds the same bid id the simply return the bid return currentNode->_bid; } // set the currentNode to the next in list currentNode = currentNode -> next; } // Display the msg saying not able to find the bid cout << "Not able to find the Bid with id : " < int LinkedList::Size() { return size; } //============================================================================ // Static methods used for testing //============================================================================ /** * Display the bid information * * @param bid struct containing the bid info */ void displayBid(Bid bid) { cout << bid.bidId << ": " << bid.title << " | " << bid.amount << " | " << bid.fund << endl; return; } /** * Prompt user for bid information * * @return Bid struct containing the bid info */ Bid getBid() { Bid bid; cout << "Enter Id: "; cin.ignore(); getline(cin, bid.bidId); cout << "Enter title: "; getline(cin, bid.title); cout << "Enter fund: "; cin >> bid.fund; cout << "Enter amount: "; cin.ignore(); string strAmount; getline(cin, strAmount); bid.amount = strToDouble(strAmount, '$'); return bid; } /** * Load a CSV file containing bids into a LinkedList * * @return a LinkedList containing all the bids read */ void loadBids(string csvPath, LinkedList *list) { cout << "Loading CSV file " << csvPath << endl; // initialize the CSV Parser csv::Parser file = csv::Parser(csvPath); try { // loop to read rows of a CSV file for (int i = 0; i < file.rowCount(); i++) { // initialize a bid using data from current row (i) Bid bid; bid.bidId = file[i][1]; bid.title = file[i][0]; bid.fund = file[i][8]; bid.amount = strToDouble(file[i][4], '$'); //cout << bid.bidId << ": " << bid.title << " | " << bid.fund << " | " << bid.amount << endl; // add this bid to the end list->Append(bid); } } catch (csv::Error &e) { std::cerr << e.what() << std::endl; } } /** * Simple C function to convert a string to a double * after stripping out unwanted char * * credit: http://stackoverflow.com/a/24875936 * * @param ch The character to strip out */ double strToDouble(string str, char ch) { str.erase(remove(str.begin(), str.end(), ch), str.end()); return atof(str.c_str()); } /** * The one and only main() method * * @param arg[1] path to CSV file to load from (optional) * @param arg[2] the bid Id to use when searching the list (optional) */ int main(int argc, char* argv[]) { // process command line arguments string csvPath, bidKey; switch (argc) { case 2: csvPath = argv[1]; bidKey = "98109"; break; case 3: csvPath = argv[1]; bidKey = argv[2]; break; default: csvPath = "eBid_Monthly_Sales_Dec_2016.csv"; bidKey = "98109"; } clock_t ticks; LinkedList bidList; Bid bid; int choice = 0; while (choice != 9) { cout << "Menu:" << endl; cout << " 1. Enter a Bid" << endl; cout << " 2. Load Bids" << endl; cout << " 3. Display All Bids" << endl; cout << " 4. Find Bid" << endl; cout << " 5. Remove Bid" << endl; cout << " 9. Exit" << endl; cout << "Enter choice: "; cin >> choice; switch (choice) { case 1: bid = getBid(); bidList.Append(bid); displayBid(bid); break; case 2: ticks = clock(); loadBids(csvPath, &bidList); cout << bidList.Size() << " bids read" << endl; ticks = clock() - ticks; // current clock ticks minus starting clock ticks cout << "time: " << ticks << " milliseconds" << endl; cout << "time: " << ticks * 1.0 / CLOCKS_PER_SEC << " seconds" << endl; break; case 3: bidList.PrintList(); break; case 4: ticks = clock(); bid = bidList.Search(bidKey); ticks = clock() - ticks; // current clock ticks minus starting clock ticks if (!bid.bidId.empty()) { displayBid(bid); } else { cout << "Bid Id " << bidKey << " not found." << endl; } cout << "time: " << ticks << " clock ticks" << endl; cout << "time: " << ticks * 1.0 / CLOCKS_PER_SEC << " seconds" << endl; break; case 5: bidList.Remove(bidKey); break; } } cout << "Good bye." << endl; return 0; }
Step by Step Solution
There are 3 Steps involved in it
Step: 1
Get Instant Access to Expert-Tailored Solutions
See step-by-step solutions with expert insights and AI powered tools for academic success
Step: 2
Step: 3
Ace Your Homework with AI
Get the answers you need in no time with our AI-driven, step-by-step assistance
Get Started