13.1. A polynomial of degree n has the form:
a + bx + cx2 + ... + gxn-1 + hxnThe values a, b, c, ..., g, h are numeric constants called the coefficients of the polynomial, with h != 0. For example:
1 + 3x - 7x3 + 5x4is a polynomial of degree 4 with integer coefficents of 1, 3, 0, -7 and 5. Design and implement a Polynomial class that can represent such a polynomial. Store the coefficients in a list data member of your class. Provide a constructor, an output operation that displays a Polynomial in easy-to-read format (i.e., using ^ for exponentiation), an input operation that allows a user a polynomial like that shown above, and an evaluate operation that given an x-value, returns the value of the polynomial for that value.
To test your class, write a program that reads a polynomial and values for x and displays the corresponding polynomial values.
13.2. The rock group Flink Poyd is giving a concert and you have been hired by the night club where they are playing. The club seats 100 people, and tickets will be sold in advance. Ticket requests are to be filled in the order in which they are received, with a maximum of four tickets per person. Write an TicketOrder class that stores a name, address, and number of tickets in a ticket order. Your class should provide input, output, and the equality operations.
Using your class, write a program that a box office cashier can use to enter the names, addresses, and number of tickets for a sequence of orders. The orders should be stored in a list. Your program should check that no one received more than four tickets, and that the same person does not submit multiple orders. When all the tickets have been ordered (or on a special keyboard input), your program is to generate a series of mailing labels (Name, Address, number of tickets) that a clerk can use to fill the orders.
13.3. Design and implement a BigInt class whose values are large integers with perhaps hundreds of digits. Represent each number as a list, each of whose elements is a block of digits of the big integer. Overload the addition and subtraction operators for this class. Do so by adding the lists value-by-value, carrying from one element to the next as necessary. Write a two-function BigInt calculator to test your program.
For extra credit, overload the multiplication and division operators, too.
13.4. Write a Print() library function template that, given a list, displays each value in the list on a separate line. Use an iterator as described in "C++ An Introduction to Computing."
To your library, add a Read() function template that, given a list, fills it with input values from the keyboard.
Using Print() and Read(), overload operator<< and operator>> with function templates so that list values can be read and displayed conveniently. Store these functions in the library as well.
To your library, add a template for operator+ that, given two lists, returns the concatenation of the two lists. Then write a driver program that tests your functions.
Turn In: A hard copy of this grade sheet, attached to hard copies of
Don't forget to clean up your directory when you are all finished...