Browse W
Alphabetical listing with fast deep pagination.
66619 items • Page 913 / 1333
Write a C++ function that takes an alphabetic character and returns the correspo
Write a C++ function that takes an alphabetic character and returns the corresponding International Civil Aviation Organization alphabet word(these are the words that pilots use w…
Write a C++ function that will reverse the characters in a C++ string. - The fun
Write a C++ function that will reverse the characters in a C++ string. - The functi…
Write a C++ function that will reverse the characters in a C++ string. The funct
Write a C++ function that will reverse the characters in a C++ string. The function prototype is: void reverse( char word[] ) Note: - This function cannot have any local variables…
Write a C++ function to add a node to the end of a linked list Your function tak
Write a C++ function to add a node to the end of a linked list Your function takes two arguments-the head of the linked list and the value num to be added. Your function should re…
Write a C++ function to add a node to the end of a linked list. The function tak
Write a C++ function to add a node to the end of a linked list. The function takes two arguments-the head of the linked list and the value to be added. It should return the head o…
Write a C++ function to change the value of a node at the beginning of a linked
Write a C++ function to change the value of a node at the beginning of a linked list. Your function takes two arguments - the head of the linked list and the value num to which yo…
Write a C++ function to delete nodes in a linked list. The function takes two ar
Write a C++ function to delete nodes in a linked list. The function takes two arguments - the head of the linked list and the value to be deleted. It should delete all nodes which…
Write a C++ function to delete the given value from the binary search tree. The
Write a C++ function to delete the given value from the binary search tree. The function takes two arguments, tree node and value of the node to be deleted. Also replace the node …
Write a C++ function to delete the given value from the binary search tree. The
Write a C++ function to delete the given value from the binary search tree. The function takes two arguments, tree node and value of the node to be deleted. Also replace the node …
Write a C++ function to delete the given value from the binary search tree. The
Write a C++ function to delete the given value from the binary search tree. The function takes two arguments, tree node and value of the node to be deleted. Also replace the node …
Write a C++ function to delete the given value from the binary search tree. The
Write a C++ function to delete the given value from the binary search tree. The function takes two arguments, tree node and value of the node to be deleted. Also replace the node …
Write a C++ function to delete the given value from the binary search tree. The
Write a C++ function to delete the given value from the binary search tree. The function takes two arguments, tree node and value of the node to be deleted. You only need to consi…
Write a C++ function to delete the given value from the binary search tree. The
Write a C++ function to delete the given value from the binary search tree. The function takes two arguments, tree node and value of the node to be deleted. You only need to consi…
Write a C++ function to delete the given value from the binary search tree. The
Write a C++ function to delete the given value from the binary search tree. The function takes two arguments, tree node and value of the node to be deleted. You only need to consi…
Write a C++ function to delete the given value\'s right child from the binary se
Write a C++ function to delete the given value's right child from the binary search tree. The function takes two arguments, tree node and value of the node whose right child has t…
Write a C++ function to delete the given value\'s right child from the binary se
Write a C++ function to delete the given value's right child from the binary search tree. The function takes two arguments, tree node and value of the node whose right child has t…
Write a C++ function to efficiently yield a new ordered list that is the union o
Write a C++ function to efficiently yield a new ordered list that is the union of two ordered lists: template list ordered_union(const list & a, const list & b); You may a…
Write a C++ function to implement push operation on a stack implemented using a
Write a C++ function to implement push operation on a stack implemented using a linked list. The push function takes in an integer argument and inserts it onto the top of the stac…
Write a C++ function to implement the insert operation in a max heap. bool Array
Write a C++ function to implement the insert operation in a max heap. bool ArrayMaxHeap::add(int newData) void ArrayMaxHeap::siftUp(int subTreeRootIndex) class ArrayMaxHeap { priv…
Write a C++ function to test whether a given 9x9 matrix contains a valid Sudoku
Write a C++ function to test whether a given 9x9 matrix contains a valid Sudoku configuration. The function should return 1 if the configuration is valid and 0 otherwise. If you a…
Write a C++ function using pointer notation that receives an integer array and a
Write a C++ function using pointer notation that receives an integer array and another number and returns the count of how many numbers in the array are positive and smaller than …
Write a C++ function, smallestIndex, that takes as parameters an int array and i
Write a C++ function, smallestIndex, that takes as parameters an int array and its size and returns the index of the first occurrence of the smallest element in the array. Write a…
Write a C++ function, smallestIndex, that takes as parameters an int array and i
Write a C++ function, smallestIndex, that takes as parameters an int array and its size and returns the index of the first occurrence of the smallest element in the array. Also, w…
Write a C++ function: Here is the function you should implement: // // // vector
Write a C++ function: Here is the function you should implement: // // // vector<float> local_average(vector<string> w, int loc) { } // // Find the average length of t…
Write a C++ funtion that reads data from a file called temperature.dat and procc
Write a C++ funtion that reads data from a file called temperature.dat and proccess it per the requirements. The data from the file is as follows: 56 57 58 59 59 60 61 62 63 64 65…
Write a C++ hangman game using at least 5 user defined functions. The secret han
Write a C++ hangman game using at least 5 user defined functions. The secret hangman word will come from an input file. I cannot use any arrays or vectors, this must be accomplish…
Write a C++ integer binary search tree program that will insert nodes, delete no
Write a C++ integer binary search tree program that will insert nodes, delete nodes, search for a node, and print the tree out in order.
Write a C++ main program that calls each function listed below. Load values into
Write a C++ main program that calls each function listed below. Load values into each array using a list to test each function. Print out results to show original array contents a…
Write a C++ main program that calls each function listed below. Load values into
Write a C++ main program that calls each function listed below. Load values into each array using a list to test each function. Print out results to show original array contents a…
Write a C++ main program that calls each function listed below. Load values into
Write a C++ main program that calls each function listed below. Load values into each array using a list to test each function. Print out results to show original array contents a…
Write a C++ main program that calls each function listed below. Load values into
Write a C++ main program that calls each function listed below. Load values into each array using a list to test each function. Print out results to show original array contents a…
Write a C++ method removeShorterOfPairs that has an ArrayList of strings as a pa
Write a C++ method removeShorterOfPairs that has an ArrayList of strings as a parameter. For every consecutive pair of strings the methods removes the shorter of the two from the …
Write a C++ object oriented program which computes interest on a credit card bal
Write a C++ object oriented program which computes interest on a credit card balance. The task is done with a function that accepts initial balance, monthly interest rate, number …
Write a C++ object-oriented program to create a dictionary. The dictionary has 2
Write a C++ object-oriented program to create a dictionary. The dictionary has 26 files (files). You may name the files (tables) as A.txt, B.txt,..., Z.txt. Your dictionary class …
Write a C++ object-oriented program to create a dictionary. The dictionary has 2
Write a C++ object-oriented program to create a dictionary. The dictionary has 26 files (files). You may name the files (tables) as A.txt, B.txt,..., Z.txt. Your dictionary class …
Write a C++ object-oriented program to manage an I/O process list and a ready pr
Write a C++ object-oriented program to manage an I/O process list and a ready process list for an operating system. The structure of a process is as follows: Process id – unsigned…
Write a C++ program (cars.cpp) that uses a one dimensional string array, cars to
Write a C++ program (cars.cpp) that uses a one dimensional string array, cars to store the names of 10 car manufacturers. Prompt the user to enter the name of 10 car manufacturers…
Write a C++ program (cpp) which repeatedly asks the user to enter their contact
Write a C++ program (cpp) which repeatedly asks the user to enter their contact numbers. Create a string variable named “Phone_No” and take the input in the following pattern: “+9…
Write a C++ program (in UNIX) for traversing a Binary Search Tree in following w
Write a C++ program (in UNIX) for traversing a Binary Search Tree in following ways: (use Linked List by Class) ---------- 20 points i) Breadth First Traversal: Top-down, Left-to-…
Write a C++ program (program.cpp along with Stack.h and Stack.cpp). - In Stack.h
Write a C++ program (program.cpp along with Stack.h and Stack.cpp). - In Stack.h and Stack.cpp, create a stack that stores char data. Doesn’t matter whether you implement static s…
Write a C++ program (using, , and maybe ) that does the
Write a C++ program (using<iostream>, <cmath>, and maybe <string>) that does the task given below. (Please answer soon as it is due in a few hours, thank you so …
Write a C++ program 1. Study the function process_text() in file \"text_processi
Write a C++ program 1. Study the function process_text() in file "text_processing.cpp". What do the string member functions find(), substr(), c_str() do? //text_processing.cpp #in…
Write a C++ program A3p3.cpp with a class that is a derived class of the class i
Write a C++ program A3p3.cpp with a class that is a derived class of the class in problem 2. Add a private int member var2 to this class. Initialize the member variables var and v…
Write a C++ program Convolution is an incredibly important concept in many areas
Write a C++ program Convolution is an incredibly important concept in many areas of math and engineering Convolution takes two 2-dimensional arrays: an input array and a kernel ar…
Write a C++ program In this ques tion you are to design two algorithms to find t
Write a C++ program In this ques tion you are to design two algorithms to find the lowest (nearest) common ancestor of two given nodes in a binary tree. You may assume that both n…
Write a C++ program Program to choose a series of numbers Write a program that w
Write a C++ program Program to choose a series of numbers Write a program that will choose five numbers between and including 1 and 75. It then will choose a sixth number between …
Write a C++ program Question: About Dynamic Memory Allocation Consider the follo
Write a C++ program Question: About Dynamic Memory Allocation Consider the following code piece and complete the parts a thru' d: string * namesPtr; int size; cout >> "How m…
Write a C++ program That allows the user to enter the last names of five candida
Write a C++ program That allows the user to enter the last names of five candidates in a local election and the votes received by each candidate. The program should then output ea…
Write a C++ program That reads a line of text, changes each uppercase letter to
Write a C++ program That reads a line of text, changes each uppercase letter to lowercase, and places each letter both in a queue and onto a stack. The program should then verify …
Write a C++ program That uses a stack to print the prime factors of a positive i
Write a C++ program That uses a stack to print the prime factors of a positive integer in descending order. I need original code and not something copied exactly off the Internet …