EBK PROBLEM SOLVING WITH C++
EBK PROBLEM SOLVING WITH C++
9th Edition
ISBN: 9780133834505
Author: SAVITCH
Publisher: PEARSON
bartleby

Concept explainers

Question
Book Icon
Chapter 11, Problem 1PP
Program Plan Intro

Creation of program to construct class for a vector

Program Plan:

  • Define a file “vectorDouble.h” to define properties of vector.
    • Define a function prototype for constructor “VectorDouble()”.
    • Define a function prototype for destructor “~VectorDouble()”.
    • Define a function prototype for method “push_back()”.
    • Define a function prototype for method “value_at()”.
    • Define a function prototype for method “change_value_at()”.
    • Define a function prototype for method “size()”.
    • Define a function prototype for method “capacity()”.
    • Define a function prototype for method “reserve()”.
    • Define a function prototype for method “resize()”.
    • Define a function prototype for method “operator<<()”.
    • Define a function prototype for method “operator==()”.
    • Define a function prototype for method “operator=()”.
    • Define a function prototype for method “expandCapacity()”.
  • Define a file “vectorDouble.cpp” to define properties of vector.
    • Define a method for constructor “VectorDouble()” to create instance of vector.
    • Define a method for destructor “~VectorDouble()” to destroy existing vector instances.
    • Define a method “push_back()” to push value into array.
    • Define a method “value_at()” to return value of element.
    • Define a method “change_value_at()” to change value of element.
    • Define a method “size()” to compute size of array.
    • Define a method “capacity()” to return maximum count possible.
    • Define a method “reserve()” to create new array and reserve space.
    • Define a method “resize()” to resize the existing array.
    • Define a method “operator<<()” to create an overloaded operator.
    • Define a method “operator==()” to create an overloaded operator.
    • Define a method “operator=()” to create an overloaded operator.
    • Define a method “expandCapacity()” to expand capacity of array.
  • Define a file “Source.cpp” to call member functions and methods.
    • Create instance for vector class.
    • Insert values into array.
    • Call method “push_back()” to push value into array.
    • Call method “value_at()” to return value of element.
    • Call method “change_value_at()” to change value of element.
    • Call method “size()” to compute size of array.
    • Call method “capacity()” to return maximum count possible.
    • Call method “reserve()” to create new array and reserve space.
    • Call method “resize()” to resize the existing array.
    • Call method “operator<<()” to create an overloaded operator.
    • Call method “operator==()” to create an overloaded operator.
    • Call method “operator=()” to create an overloaded operator.
    • Call method “expandCapacity()” to expand capacity of array.
    • Display resultant values.

Blurred answer
Students have asked these similar questions
in c++ Declare and implement 5 classes: FloatArray, SortedArray, FrontArray, PositiveArray & NegativeArray. 1- The FloatArray class stores a dynamic array of floats and its size. It has: - A parameterized constructor that takes the array size. - An add method that adds a float at the end of the array. - Overloading for the insertion operator << to write the array to a file (ofstream) - Overloading for the extraction operator >> to read the array elements from the file (ifstream) and add them to the array. - A destructor to deallocate the array 2- The SortedArray inherits from FloatArray. It has: - A parameterized constructor that takes the array size. - An add method that adds a float at the right place in the array such that the array remains sorted with every add. Don’t add to the array then sort but rather add in the right place. 3- The FrontArray inherits from FloatArray. It has: - A parameterized constructor that takes the array size. - An add method that adds a…
The native int type in C++ cannot store large integers of more than 10 decimal digits. In this project, you will implement a bigint class that behaves like the int type but can handle unsigned integers of up to 45 digits. 1. You are to build a class named bigint that can deal with up to 45 decimal digits of unsigned integers. Thebigint class is specified as follows. 2. The bigint class should have a five-element array (int v[5];) as its private date member. Each elementshould store 9 decimal digits.For example to store integer 1,300,000,000,000,900,000,000,100,000,000. You should have v[0] = 100000000,v[1] = 900000000, v[2] =0, v[3]= 1300, and v[4] = 0. 3. The bigint class should have the following constructors:bigint(); // default constructor, set the value to be 0bigint(int x0); // set the value to be x0bigint(int x0, int x1); // set the value to be x1 ∗ 109 + x0bigint(int x0, int x1, int x2); // set the value to be x2 ∗ 1018 + x1 ∗ 109 + x0bigint(int x0, int x1, int x2, int…
Write a program that will sort a prmiitive array of data using the following guidelines - DO NOT USE VECTORS, COLLECTIONS, SETS or any other data structures from your programming language. The codes for both the money and currency should stay the same, the main focus should be on the main file code (Programming language Java) Create a helper function called 'RecurInsSort' such that: It is a standalone function not part of any class from the prior lab or any new class you feel like creating here, Takes in the same type of parameters as any standard Insertion Sort with recursion behavior, i.e. void RecurInsSort(Currency arr[], int size) Prints out how the array looks every time a recursive step returns back to its caller The objects in the array should be Money objects added or manipulated using Currency references/pointers. It is OK to print out the array partially when returning from a particular step as long as the process of sorting is clearly demonstrated in the output. In…

Chapter 11 Solutions

EBK PROBLEM SOLVING WITH C++

Ch. 11.1 - Given the following definitions: const int x = 17;...Ch. 11.2 - What is the difference between a (binary) operator...Ch. 11.2 - Prob. 13STECh. 11.2 - Suppose you wish to overload the operator = so...Ch. 11.2 - Prob. 15STECh. 11.2 - Give the definition for the constructor discussed...Ch. 11.2 - Here is a definition of a class called Pairs....Ch. 11.2 - Following is the definition for a class called...Ch. 11.3 - Give a type definition for a structure called...Ch. 11.3 - Write a program that reads in five amounts of...Ch. 11.3 - Change the class TemperatureList given in Display...Ch. 11.3 - Prob. 22STECh. 11.3 - If a class is named MyClass and it has a...Ch. 11.4 - Prob. 24STECh. 11.4 - The following is the first line of the copy...Ch. 11.4 - Answer these questions about destructors. a. What...Ch. 11.4 - a. Explain carefully why no overloaded assignment...Ch. 11 - Modify the definition of the class Money shown in...Ch. 11 - Self-Test Exercise 17 asked you to overload the...Ch. 11 - Self-Test Exercise 18 asked you to overload the...Ch. 11 - Prob. 1PPCh. 11 - Define a class for rational numbers. A rational...Ch. 11 - Define a class for complex numbers. A complex...Ch. 11 - Enhance the definition of the class StringVar...Ch. 11 - Define a class called List that can hold a list of...Ch. 11 - Define a class called StringSet that will be used...Ch. 11 - This programming project requires you to complete...Ch. 11 - Redo Programming Project 6 from Chapter 9 (or do...Ch. 11 - Solution to Programming Project 11.12 To combat...Ch. 11 - Repeat Programming Project 11 from Chapter 10 but...
Knowledge Booster
Background pattern image
Computer Science
Learn more about
Need a deep-dive on the concept behind this application? Look no further. Learn more about this topic, computer-science and related others by exploring similar questions and additional content below.
Similar questions
SEE MORE QUESTIONS
Recommended textbooks for you
Text book image
C++ Programming: From Problem Analysis to Program...
Computer Science
ISBN:9781337102087
Author:D. S. Malik
Publisher:Cengage Learning