Browse C
Alphabetical listing with fast deep pagination.
81169 items • Page 49 / 1624
C++ Create a template class definition for the Set class implemented below and w
C++ Create a template class definition for the Set class implemented below and write a main driver program to allow for the instantiation of objects from multiple class specializa…
C++ Create a template class definition for the Set class implemented below and w
C++ Create a template class definition for the Set class implemented below and write a main driver program to allow for the instantiation of objects from multiple class specializa…
C++ Create an application that searches a file of male and female first names. A
C++ Create an application that searches a file of male and female first names. A link to the file is provided on the class webpage. "FirstNames2015.txt" is a list of the most popu…
C++ Create an array of 1000 double datatype elements, store 7.5 times the array
C++ Create an array of 1000 double datatype elements, store 7.5 times the array slot number as the value in each array slot. Ask the user to enter an integer between 0 and 999 – p…
C++ Create an inheritance hierarchy that a bank might use to represent customers
C++ Create an inheritance hierarchy that a bank might use to represent customers' bank accounts. All customers can deposit ("credit") into their accounts and withdraw ("debit") fr…
C++ Create and Implement a Crypto class from the UML diagram in Figure 5.4. Figu
C++ Create and Implement a Crypto class from the UML diagram in Figure 5.4. Figure 5.4. Crypto Class m_OpSequence is a QString consisting of the characters 'p' and 's' that repres…
C++ Create and invoke a function that returns a value. Show an example of how th
C++ Create and invoke a function that returns a value. Show an example of how this is done. Create and invoke a function that does not return a value. This called a void function.…
C++ Create the implementation portion of the complex class described in the comp
C++ Create the implementation portion of the complex class described in the complex definition file "complex.h" #ifndef COMPLEX_H #define COMPLEX_H class complex { public: complex…
C++ Creating a Function that generates a single turn in Monte Carlo/Pig: I\'m ha
C++ Creating a Function that generates a single turn in Monte Carlo/Pig: I'm having a large amount of confusion trying to figure out how to code a certain function. My Code so far…
C++ Credit card numbers follow certain patterns. A credit card number must have
C++ Credit card numbers follow certain patterns. A credit card number must have between 13 and 16 digits. It must start with: 4 for Visa cards 5 for Master cards 37 for American E…
C++ Currency Conversion: Create a C++ program that can calculate the currency co
C++ Currency Conversion: Create a C++ program that can calculate the currency conversion rates for foreign currencies into dollars. (The more currencies that can be converted the …
C++ DATA STRUCTURES 2. The society has decided that the animals should be stored
C++ DATA STRUCTURES 2. The society has decided that the animals should be stored in a linked list instead of an iray Define a class (or classes) suitable for holding a linked list…
C++ DATA STRUCTURES 5 For this question, the information known about a person is
C++ DATA STRUCTURES 5 For this question, the information known about a person is: First name Last name . Age (in days) Define structs or classes suitable for representing people a…
C++ DATA STRUCTURES I can\'t complete part B of the project (I just need part b)
C++ DATA STRUCTURES I can't complete part B of the project (I just need part b). I get 6 errors related to the same line (I would highlight and comment in the line that I get the …
C++ DATA STRUCTURES UNSORTED LISTS. I\'m just trying to run the project, it seem
C++ DATA STRUCTURES UNSORTED LISTS. I'm just trying to run the project, it seems that all my function declaration are fine (I called it sorted but I know it's unsorted lol), but I…
C++ DATA TRANSMIT A company wants to transmit data over the telephone, but they
C++ DATA TRANSMIT A company wants to transmit data over the telephone, but they are concerned that the phones may be tapped. All of their data are transmitted as four-digit intege…
C++ DCList Class Using your knowledge of Circular and Doubly-Linked list algorit
C++ DCList Class Using your knowledge of Circular and Doubly-Linked list algorithms, create a new class combining the two into a new data structure: a Circular, Doubly-Linked List…
C++ DEBUGGING EXCERCISE * The FileReader and FileWriter classes read character s
C++ DEBUGGING EXCERCISE * The FileReader and FileWriter classes read character streams. This program * reads a file called LoremIpsumIn.txt and outputs a file called * LoremIpsumO…
C++ DEVC++. This lab is based on Chapter 4, \"The Speed of Sound\". 1) Write a p
C++ DEVC++. This lab is based on Chapter 4, "The Speed of Sound". 1) Write a program as described, but include a loop so the user can perform as many calculations as desired. Pres…
C++ DFS Hi, I have to implement a member function in a class HuffmanHeap : Heap
C++ DFS Hi, I have to implement a member function in a class HuffmanHeap : Heap<TreeNode *> called void dfs(HuffmanCode& hc, TreeNode *tn, string &s){}; which is cal…
C++ DONT COPY AND PASTE FROM ANOTHER PROGRAM The insertion sort algorithm is a m
C++ DONT COPY AND PASTE FROM ANOTHER PROGRAM The insertion sort algorithm is a more efficient means of sorting an array than the selection sort. This algorithm is analogous to the…
C++ Data Persistance Help I am trying to write a C++ program that has data persi
C++ Data Persistance Help I am trying to write a C++ program that has data persistence but the .txt file that I am using is being overwritten each time the program is ran, and it …
C++ Data Persistance Help Redo the code below to make the data persistent. You w
C++ Data Persistance Help Redo the code below to make the data persistent. You will have to save information in a file or files so that the application will pick up previously sto…
C++ Data Structure (You can download this source file as http://staffwww.fullcol
C++ Data Structure (You can download this source file as http://staffwww.fullcoll.edu/aclifton/courses/cs133_fa16/files/dlist.h.) You should save the above into dlist.h, and put t…
C++ Data Structure Hash Table Your hash functions will hash strings into 16-bit
C++ Data Structure Hash Table Your hash functions will hash strings into 16-bit (not 32-bit) int s. This is important, because were going to keep a table of the number of collisio…
C++ Data Structure Hash Table Your hash functions will hash strings into 16-bit
C++ Data Structure Hash Table Your hash functions will hash strings into 16-bit (not 32-bit) int s. This is important, because were going to keep a table of the number of collisio…
C++ Data Structure Hashing Machine Problem 7 - Hashing Write a program to do the
C++ Data Structure Hashing Machine Problem 7 - Hashing Write a program to do the following: loads username/password sets from the file password.txt and insert them into the hash t…
C++ Data Structure Homework 3.2 Major Prerequisite Tree 1. What is the longest d
C++ Data Structure Homework 3.2 Major Prerequisite Tree 1. What is the longest directed path in this graph? 2. Which vertex has the highest in-degree? 3. What is the sum of the de…
C++ Data Structure Homework Part A: Separate Chaining A hashtable of size 7 uses
C++ Data Structure Homework Part A: Separate Chaining A hashtable of size 7 uses separate chaining to resolve collisions. A polynomial hash function where a = 33 is used. Sketch t…
C++ Data Structure Lab 3 Linked List Objectives: 1. Get yourself familiar with t
C++ Data Structure Lab 3 Linked List Objectives: 1. Get yourself familiar with the forward Linked List creation and operations. 2. Manipulate pointers 3. Create [inked node by is-…
C++ Data Structure Objectives: 1. Get yourself familiar with the forward Linked
C++ Data Structure Objectives: 1. Get yourself familiar with the forward Linked List creation and operations. 2. Manipulate pointers 3. Create linked node by is-a or has-a Overvie…
C++ Data Structure Recursion Sketch Inductive Proof (by using some values) The f
C++ Data Structure Recursion Sketch Inductive Proof (by using some values) The function that computes the sum of all even numbers less than or equal to n: (1) Sketch an inductive …
C++ Data Structures Binary Search Tree Output file: tree.dat For this program, y
C++ Data Structures Binary Search Tree Output file: tree.dat For this program, you will develop a C++ program that will implement a binary search tree. The data structure for the …
C++ Data Structures Course about Recursion We want to write a function that coun
C++ Data Structures Course about Recursion We want to write a function that counts the number of elements in a list that are larger than the average. For example, the function sho…
C++ Data Structures Help //test_stack.cpp : Test the correctness of //the array-
C++ Data Structures Help //test_stack.cpp : Test the correctness of //the array-based implementation of stack //defined in array_stack.h and list-based //implementation of stack d…
C++ Data Structures Question Euclid’s Algorithm: function gcd(a, b) while b 0 t
C++ Data Structures Question Euclid’s Algorithm: function gcd(a, b) while b 0 t := b; b := a mod b; a := t; return a; Remark : If a > 0 and b > …
C++ Data Structures Questions Assuming is upper and lowercase letters, the
C++ Data Structures Questions Assuming <ch> is upper and lowercase letters, the grammar that describes a palindrome is: Select one: a. <pal> = empty string | <ch>…
C++ Data Structures and Algorithms Here are the general project instructions: ht
C++ Data Structures and Algorithms Here are the general project instructions: https://ece.uwaterloo.ca/~dwharder/aads/Projects/2/ Here is the first class isntructions (Dynamic_que…
C++ Data Structures and Algorithms Here are the general project instructions: ht
C++ Data Structures and Algorithms Here are the general project instructions: https://ece.uwaterloo.ca/~dwharder/aads/Projects/2/ Here is the first class isntructions (Dynamic_que…
C++ Data Structures and Algorithms Here is the general project instructions: htt
C++ Data Structures and Algorithms Here is the general project instructions: https://ece.uwaterloo.ca/~dwharder/aads/Projects/5/ Here are the source files: https://ece.uwaterloo.c…
C++ Data Structures using 3 files for program Binary Search Tree Output file: tr
C++ Data Structures using 3 files for program Binary Search Tree Output file: tree.dat For this program, you will develop a C++ program that will implement a binary search tree. T…
C++ Data Structures using 3 files for program. Program name: main.cpp, bst,cpp,
C++ Data Structures using 3 files for program. Program name: main.cpp, bst,cpp, bst.hpp , makefile Binary Search Tree Output file: tree.dat For this program, you will develop a C+…
C++ Data strucs Algorithms. Please follow all instructions and give output. Will
C++ Data strucs Algorithms. Please follow all instructions and give output. Will leave thumbs up as well :)! Make Snake game with an auto generated maze, different levels of diffi…
C++ Data structure homework A hashtable of size 7 uses separate chaining to reso
C++ Data structure homework A hashtable of size 7 uses separate chaining to resolve collisions. A polynomial hash function where a= 33 is used. Sketch the table's contents after t…
C++ Debug help!!!! PLEASE HELP I am not allowed to use global variables!! Phase
C++ Debug help!!!! PLEASE HELP I am not allowed to use global variables!! Phase 1 Write a program that prints a menu. Based on the menu item selected by the user, the program shou…
C++ Declaration Syntax class Class_name { public: constructors destructor member
C++ Declaration Syntax class Class_name { public: constructors destructor member functions accessors …
C++ Declare and implement the functions given in the question. Implementing List
C++ Declare and implement the functions given in the question. Implementing Lists using Linked Lists What you will learn Implementing linked lists The list ADT .Templates . Runnin…
C++ Decrypt the Enemy Message. I get stuck with a part of my assignment, and nee
C++ Decrypt the Enemy Message. I get stuck with a part of my assignment, and need some help. The entire assignment is about "decrypt the enemy message" The encryption algorithm is…
C++ Define a PayRoll class that has data members for an employee’s hourly pay ra
C++ Define a PayRoll class that has data members for an employee’s hourly pay rate (an integer , representing cents) and number of hours worked (also an integer ). The class provi…
C++ Define a class for a type called Fraction. This class is used to represent a
C++ Define a class for a type called Fraction. This class is used to represent a ratio of two integers. Include mutator functionsand allow the user to set the numerator and the de…