Total Points: 50 A4 Due Tuesday by 11:59pm Points 50 Submitting a file upload A2-A6 Rubric Criteria Ratings Pts 20 pts 30 pts Start Assignment Assignment #4 This assignment consists of writing,...

1 answer below »
Total Points: 50 A4 Due Tuesday by 11:59pm Points 50 Submitting a file upload A2-A6 Rubric Criteria Ratings Pts 20 pts 30 pts Start Assignment Assignment #4 This assignment consists of writing, documenting, and submitting four separate, related programs. Instructions for how to name the files, package them, and submit are at the end. As mentioned in class, any output of any program that begins with a pound sign (#) will be ignored. This way you can add debugging information or comments outside of the formatting requirements. You should remove these before you submit but, in a pinch, just be aware we will recognize if it accidentally shows up in your submission.) The Canvas Wiki Page referenced in the rubric below can be found here (Coding Cannon). Canvas doesn't let us embedded links in the Rubric. Program 4A: Polymorphism, A List of LocNodes Description Use the basic linked list Node and List to create a linked list of "location nodes" instead of the simple node of the previous assignment. A "LocNode" class is subclass of "Node" that adds two additional data members (attributes): an x and y location (which are floating-point doubles). To the original Node and to the LocNode, you need to add two more *virtual* methods called "std::string to_string() " and "bool lt(LocNode *rhs)". "to_string" simply creates a string "" where you replace {insert_id}, {insert_x}, and {insert_x} with the string representations of the data members id, x, and y (respectively). "lt" (which is short for 'less than') takes the current object ('this') which is the left-hand side (l.h.s.) and compares it to the right-hand side ('rhs') ; it returns true if thisto_string() you get the correct output string Develop a test case that demonstrates that compares two LocNodes and correctly tests lt when rhslhs Test the cases for this program do not need any input from the standard input. You simply output an example of a Node, a LocNode, and a Node *ptr that points to LocNode. Likewise, three outputs for each of the lt() calls simply show that the virtual function is working. Program 4B: Insertion Sort Description Use the new Node and List just developed and create a *new* List class called SortedList; put this new definition in a header file called sortedlist.h. The new SortedList class will add a new function called "void insert(Node *x)" which will insert node x in sorted order into the list. Since the list is initially empty and every node is added in the correct location, it will be the case that the list is always kept in sorted order. Modify the List operator < to="" use="" the="" new="" "to_string()"="" virtual="" method="" to="" output="" the="" node.="" hence,="" your="" sorted="" list="" will="" work="" with="" either="" node="" or="" locnode.="" although="" it="" is="" not="" required,="" you="" may="" want="" to="" overload="" the="" append="" and="" prepend="" methods="" of="" list="" and="" have="" them="" simply="" call="" insert.="" requirements="" the="" list="" must="" be="" in="" sorted="" order="" at="" all="" times="" if="" locnodes="" are="" given="" to="" sortedlist,="" then="" *only*="" locnodes="" are="" given="" if="" locnodes="" are="" given,="" then="" they="" are="" to="" be="" sorted="" by="" geometrical="" distance="" from="" the="" origin="" (i.e.,="" use="" the="" lt()="" function="" written="" in="" the="" previous="" program)="" requirements:="" in="" addition="" to="" the="" usual="" grading="" rubric,="" the="" assignment="" will="" be="" based="" on="" its="" functional="" correctness="" and="" its="" efficiency.="" spe="" functional="" correctness="" each="" component="" will="" be="" evaluated="" for="" how="" many="" of="" the="" requirements="" are="" met.="" see="" the="" text="" for="" specific="" requirements.="" 20="" to="">0.0 pts Full Marks 0 pts No Marks Code Style and Formating Please write your code neatly. Use naming conventions, add comments, use correct indentation, and be organized. Your code should not be difficult to read and understand. 30 to >0.0 pts Full Marks 0 pts No Marks
Answered 2 days AfterNov 19, 2021

Answer To: Total Points: 50 A4 Due Tuesday by 11:59pm Points 50 Submitting a file upload A2-A6 Rubric Criteria...

Vaibhav answered on Nov 21 2021
113 Votes
SOLUTION.PDF

Answer To This Question Is Available To Download

Related Questions & Answers

More Questions »

Submit New Assignment

Copy and Paste Your Assignment Here