Academic Integrity: tutoring, explanations, and feedback — we don’t complete graded work or submit on a student’s behalf.

Browse C

Alphabetical listing with fast deep pagination.
81169 items • Page 48 / 1624

All 0-9 A B C D E F G H I J K L M N O P Q R S T U V W X Y Z
C++ Complete the body of this function. Use a queue of characters to store the i
C++ Complete the body of this function. Use a queue of characters to store the input line as it is being read. size_t counter( )     // Precondition: There is a line of input wait…
C++ Complete the implementation of the appendNode function for the following lin
C++ Complete the implementation of the appendNode function for the following linked list class: class ListNode {    public:       int value;                  ListNode *next;      …
C++ Complete this program using the following declarations, the TypeString array
C++ Complete this program using the following declarations, the TypeString array, and the main(). enum Type{Even, Odd}; union Value {     int i;     double d; }; struct Number {  …
C++ Composition and classes with lists Programming Help!! Write a program that h
C++ Composition and classes with lists Programming Help!! Write a program that has several instances of Student class (ID, First Name, Last Name, Degree, City). Each student will …
C++ Concepts tested by the program: Working with arrays Using file operations 3.
C++ Concepts tested by the program: Working with arrays Using file operations 3. Using a selection sort to sort parallel arrays 4. Using a binary search with sorted arrays 5. Usin…
C++ Concepts tested by this program : 1.Learn to organize code within a function
C++ Concepts tested by this program: 1.Learn to organize code within a function 2.Learn to pass data to and return Boolean data from function 3.Use of loop 4.Use file processing P…
C++ Concepts tested by this program: 1.Learn to organize code within a function
C++ Concepts tested by this program: 1.Learn to organize code within a function 2.Learn to pass data to and return Boolean data from function 3.Use of loop 4.Use file processing P…
C++ Consider a graphic system that has classes for various figures, say rectangl
C++ Consider a graphic system that has classes for various figures, say rectangles, squares, triangles, circles and so on. For example, a rectangle might have data members height,…
C++ Consider a sparse implementation of the ADT polynomial that stores only the
C++ Consider a sparse implementation of the ADT polynomial that stores only the terms with nonzero coefficients. For example, you can represent the revised polynomial p in Exercis…
C++ Consider the following array: What are the contents of the array a after the
C++ Consider the following array: What are the contents of the array a after the following loops complete? a.for (int i = 1; i < 10; i++) { a[i] = a[i - 1]; } b.for (int i = 9;…
C++ Consider the following code: // Linked Lists: INSERT a new node in a sorted
C++ Consider the following code: // Linked Lists: INSERT a new node in a sorted list struct Data { int number; char ch; }; struct ListNode { Data data; struct ListNode *next; }; A…
C++ Consider the following code: // Linked Lists: SWAP consecutive nodes struct
C++ Consider the following code: // Linked Lists: SWAP consecutive nodes struct Data { int number; char ch; }; struct ListNode { Data data; struct ListNode *next; }; Assume that a…
C++ Consider the following code: // Linked Lists: UPDATE (replace data in a node
C++ Consider the following code: // Linked Lists: UPDATE (replace data in a node specified by a number) struct Data { int number; char ch; }; struct ListNode { Data data; struct L…
C++ Consider the following code: 01: list folderol (int n) 02: { 03: set t, u; 0
C++ Consider the following code: 01: list folderol (int n) 02: { 03: set t, u; 05: 06: while (t.size() < n) 07: t.insert (rand() % (2*n)); 08: while (u.size() < n) 09: u.ins…
C++ Consider the following code: 01: list folderol (int n) 02: { 03: unordered_s
C++ Consider the following code: 01: list folderol (int n) 02: { 03: unordered_set t, u; 05: 06: while (t.size() < n) 07: t.insert (rand() % (n*n)); 08: while (u.size() < n)…
C++ Console Application Creating a Snake game Your project must make use of all
C++ Console Application Creating a Snake game Your project must make use of all of the following: • Functions – the program needs to follow the standards from decomposition. You w…
C++ Console Application Use comments, Do not Use \"using namespace std;\" The pu
C++ Console Application Use comments, Do not Use "using namespace std;" The purpose of this assignment is to help gauge your skills in writing small programs that involve vectors …
C++ Console Application following the requirements below to allow entry of five
C++ Console Application following the requirements below to allow entry of five game scores for a bowler so that an average score can be calculated, high and low scores determined…
C++ Const parameter modifiers and overloading operators. Thank you! Code to use:
C++ Const parameter modifiers and overloading operators. Thank you! Code to use: my_int.cc C++ Const parameter modifiers, overloading operators, and separate compilation 1 Introdu…
C++ Control STRuctures I & II SELECTION/Repetition STATEMENTS Options available
C++ Control STRuctures I & II SELECTION/Repetition STATEMENTS Options available for Purchasing Cell Phone: OPTION CATEGORY 1 Samsung Galaxy S8 ($30/month) 2 Samsung Galaxy S8 …
C++ Copy the solution from problem 4.2 Problem 5.1 In this problem we will use i
C++ Copy the solution from problem 4.2 Problem 5.1 In this problem we will use inheritance to create two new classes, both of which will inherit from the class Car Do not change t…
C++ Copy the solution from problem 5.2. You will change the implementation of th
C++ Copy the solution from problem 5.2. You will change the implementation of the StringOfCars class, but keep the public interface. This implementation will use a linked list, ra…
C++ Corporate Sales Data. This program will have a structure that holds data abo
C++ Corporate Sales Data. This program will have a structure that holds data about each division of a corporation. This structure will have a string object that holds the division…
C++ Could anyone solve this problem? 1. I don\'t want to change any code below 2
C++ Could anyone solve this problem? 1. I don't want to change any code below 2. The code below solved 9 question out of 10. 3. The only problem is that somehow one result comes o…
C++ Count Inversions Problem Description Inversion Count for an array indicates
C++ Count Inversions Problem Description Inversion Count for an array indicates – how far (or close) the array is from being sorted. If array is already sorted then inversion coun…
C++ Cracking an Encrypted File (You can only use the headers #include
C++ Cracking an Encrypted File (You can only use the headers #include <fstream> #include <string> #include <algorithm> ) 5) Required function: std::string crack …
C++ Cracking an Encrypted File (You can only use the headers #include
C++ Cracking an Encrypted File (You can only use the headers #include <fstream> #include <string> #include <algorithm> ) 5) Required function: std::string crack …
C++ Cracking an Encrypted File (You can only use the headers #include
C++ Cracking an Encrypted File (You can only use the headers #include <fstream> #include <string> #include <algorithm> ) 5) Required function: std::string crack …
C++ Create Ingredient.cpp and Ingredient.h so that the client code complies and
C++ Create Ingredient.cpp and Ingredient.h so that the client code complies and produces the output CalorieCounter.cpp #include <iostream> #include <fstream> #include …
C++ Create a NumberList class which has a dynamic integer array with size initia
C++ Create a NumberList class which has a dynamic integer array with size initially unknown. Create an object from this class, ask the user for size of the array in the object, dy…
C++ Create a Stack Array Create a Stack Array of todo items using the following
C++ Create a Stack Array Create a Stack Array of todo items using the following struct struct TodoItem { std::string todo; }; • Do NOT add a main method to any of your submitted f…
C++ Create a Stack Array Create a Stack Array of todo items using the following
C++ Create a Stack Array Create a Stack Array of todo items using the following struct struct TodoItem { std::string todo; }; • Do NOT add a main method to any of your submitted f…
C++ Create a Stack Array Create a Stack Array of todo items using the following
C++ Create a Stack Array Create a Stack Array of todo items using the following struct DO NOT COPY AND PASTE IRRELEVANT CODE PLEASE USE THE HEADER FILE PROVIDED AS WELL AS MY CODE…
C++ Create a Stack Linked List Create a Stack Linked List of todo items using th
C++ Create a Stack Linked List Create a Stack Linked List of todo items using the following struct struct TodoItem { std::string todo; }; • Do NOT add a main method to any of your…
C++ Create a Triangle class that has the following member variables: side1 - a d
C++ Create a Triangle class that has the following member variables: side1 - a double, side2 - a double, side 3 - a double perimeter area The class should have the following membe…
C++ Create a abstract data type. Do not use any existing containers, such as the
C++ Create a abstract data type. Do not use any existing containers, such as the STL. Use a doubly-linked circular structure to store the values and links. Data will be positive i…
C++ Create a binary tree as described in chapter 20 of the text. Your functions
C++    Create a binary tree as described in chapter 20 of the text. Your functions should create the nodes, display the nodes in the 3 different orders as selected by a menu choic…
C++ Create a class called Complex for performing arithmetic with complex numbers
C++ Create a class called Complex for performing arithmetic with complex numbers. Write a program to test your class. Complex numbers have the form realPart + imaginaryPart * i wh…
C++ Create a class called Course that is used to hold the name of a college cour
C++ Create a class called Course that is used to hold the name of a college course and the number of students registered in the course. The problem should be built in three files …
C++ Create a class called monthlyAssighnmentCalendar with member variables for m
C++ Create a class called monthlyAssighnmentCalendar with member variables for month (as in which month) and an array of assignments(up to 100). Have a function that allows (throu…
C++ Create a class that implements a sorted, doubly-linked list: Start with a co
C++ Create a class that implements a sorted, doubly-linked list: Start with a copy of the sortedList class. Call your new class doublyLinkedList. Convert the baseline code into a …
C++ Create a class that implements a sorted, doubly-linked list: Start with a co
C++ Create a class that implements a sorted, doubly-linked list: Start with a copy of the sortedList class. Call your new class doublyLinkedList. Convert the baseline code into a …
C++ Create a program that asks for the separate grading points and then gives a
C++ Create a program that asks for the separate grading points and then gives a total and a letter grade. This program should loop around until I say that I am done. For example: …
C++ Create a program that fulfills the requirements of the following prompt This
C++ Create a program that fulfills the requirements of the following prompt This program will create an expense report for an employee's business trip. The program will ask the us…
C++ Create a program that uses this class as follows (The tree is used store str
C++ Create a program that uses this class as follows (The tree is used store strings – names) 1. The program should present the user with a menu as follows: Any other 1. Add a new…
C++ Create a program that will use pointers to determine the average (to 1 decim
C++ Create a program that will use pointers to determine the average (to 1 decimal place) of a series of grades entered into an array. You can assume a maximum of 15 students. You…
C++ Create a program using functions that does the following: 1. Computes and di
C++ Create a program using functions that does the following: 1.      Computes and displays the final grade for a course that has: a.       Three homework assignments, worth a tot…
C++ Create a program using functions that does the following: 1. Computes and di
C++ Create a program using functions that does the following: 1.      Computes and displays the final grade for a course that has: a.       Three homework assignments, worth a tot…
C++ Create a program which is capable of assembling and displaying various sets
C++ Create a program which is capable of assembling and displaying various sets I will provide you with. The program must correctly display the result of operators on sets (such a…
C++ Create a simple \"database\" by using an array; The core of the database nee
C++ Create a simple "database" by using an array;  The core of the database needs to be an array that will hold up to 1000 objects. The code should have a single Class Hierarchy, …