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

Browse W

Alphabetical listing with fast deep pagination.
66619 items • Page 1013 / 1333

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
Write a function that will generate an array of random numbers. It needs to: tak
Write a function that will generate an array of random numbers. It needs to: take 3 integers as parameters The first is the minimum value the second is the maximum value the third…
Write a function that will generate an array of random numbers. It needs to: tak
Write a function that will generate an array of random numbers. It needs to: take 3 integers as parameters The first is the minimum value the second is the maximum value the third…
Write a function that will generate an array of random numbers. It needs to: tak
Write a function that will generate an array of random numbers. It needs to: take 3 integers as parameters The first is the minimum value the second is the maximum value the third…
Write a function that will merge the contents of 2 sorted (ascending order) arra
Write a function that will merge the contents of 2 sorted (ascending order) arrays of type double values, storing the result in an array of output parameter (still in ascending or…
Write a function that will merge the contents of two sorted (ascendin order) arr
Write a function that will merge the contents of two sorted (ascendin order) arrays of type double values, storing the result in an output array (still in ascending order). The fu…
Write a function that will merge the contents of two sorted(ascending order) arr
Write a function that will merge the contents of two sorted(ascending order) arrays of type double values, storing the result in an array output parameter (still in ascending orde…
Write a function that will read a collection of examination scores ranging in va
Write a function that will read a collection of examination scores ranging in value from 1 to 100. Your subprogram should count and print the number of scores in the outstanding c…
Write a function that will read data from the attached \"XY.dat\". This data fil
Write a function that will read data from the attached "XY.dat". This data file has one header line The format of every line in the file is the letter ‘x’, a space, the x value, s…
Write a function that will read in the user choice of ‘P’, ‘P’ or ‘S’ . This fun
Write a function that will read in the user choice of ‘P’, ‘P’ or ‘S’ . This function takes NO incoming parameters and returns a char, the users choice. They function will use a d…
Write a function that will reverse the order of the characters stored in a strin
Write a function that will reverse the order of the characters stored in a string of arbitrary length. The function should have the header void reverse(char s[], int n) n is an in…
Write a function that will select the biggest number in an array and put it firs
Write a function that will select the biggest number in an array and put it first position at the right.This is the array: int v[]={1,9,4,10,7,3,6,2,14,13,8};they want us to selec…
Write a function that will take the following parameters: head_ref val - an inte
Write a function that will take the following parameters: head_ref val - an integer value to be appended to the end of the linked list Your function will create a new node with th…
Write a function that writes a series of random Fahrenheit temperatures and thei
Write a function that writes a series of random Fahrenheit temperatures and their corresponding Celsius temperatures to a tab-delimited file. Use 32 to 212 as your temperature ran…
Write a function that writes a series of random Fahrenheit temperatures and thei
Write a function that writes a series of random Fahrenheit temperatures and their corresing Celsius temperatures to a tab-delimited file. Use 32 to 212 as your temperature From th…
Write a function thats called trimfrnt() that deletes all leading blanks from a
Write a function thats called trimfrnt() that deletes all leading blanks from a string. write this function using pointers with the return type void. The solution I come up with l…
Write a function to accept a string (pointer to a char) and a char. The function
Write a function to accept a string (pointer to a char) and a char. The function should count and return the number of times the character appears in the string. For instance, if …
Write a function to accept a vector of test scores (values of type double betwee
Write a function to accept a vector of test scores (values of type double between 0.00 and 100.00) and an empty vector of type char. The function should fill the second vector wit…
Write a function to apply left or right rotations to a binary search tree based
Write a function to apply left or right rotations to a binary search tree based on the height of the left and right sub-trees of the root. The function should first determine if a…
Write a function to apply left or right rotations to a binary search tree based
Write a function to apply left or right rotations to a binary search tree based on the height of the left and right sub-trees of the root. The function should first determine if a…
Write a function to approximate the area under the curve of a function (e.g. app
Write a function to approximate the area under the curve of a function (e.g. approximate the integral). Your approximation must use the following algorithm. The function should be…
Write a function to build a binary search tree from an array. The function will
Write a function to build a binary search tree from an array. The function will take in the array and the array size as arguments, and return a pointer to the root of the tree. Us…
Write a function to calculate the square root of a float number with the followi
Write a function to calculate the square root of a float number with the following interface: float squareRoot( float x) Il assert that x is not negative The function should retur…
Write a function to change variable from little endian to big endian notation Th
Write a function to change variable from little endian to big endian notation The basic structure of the function is given in the attached assembly language file. You are expected…
Write a function to check if a machine uses little endian or big endian notation
Write a function to check if a machine uses little endian or big endian notation. The basic structure of the program is given in the attached assembly language file. You are expec…
Write a function to check if a machine uses little endian or big endian notation
Write a function to check if a machine uses little endian or big endian notation. The basic structure of the program is given in the attached assembly language file. You are expec…
Write a function to compute the greatest non-trivial factor of a given natural n
Write a function to compute the greatest non-trivial factor of a given natural number. Note that a natural number can have multiple factors; for example, 1, 2, 3, 4, 6 and 12 are …
Write a function to compute the sum of the series S1 given as: S1=1-1/2+1/3-1/4+
Write a function to compute the sum of the series S1 given as: S1=1-1/2+1/3-1/4+1/5-1/6+1/7-1/8+1/9-1/10..........±1/N where, N is an odd positive integer; for the last term take …
Write a function to convert the speed of a vessel in knots to speed in kmh, mph,
Write a function to convert the speed of a vessel in knots to speed in kmh, mph, or fps. Notes: Name your function knot Conversion(). Your function should accept two input argumen…
Write a function to convert the speed of a vessel in knots to speed in kmh, mph,
Write a function to convert the speed of a vessel in knots to speed in kmh, mph, or fps. Notes: Name your function knot Conversion(). Your function should accept two input argumen…
Write a function to convert the time to decimal hours. If minutes are > 60 be su
Write a function to convert the time to decimal hours. If minutes are > 60 be sure to increment hours. If hours are > 24, fix to 24 hour clock Write a function to convert th…
Write a function to copy two stacks, using the prototype of copy stacks below #i
Write a function to copy two stacks, using the prototype of copy stacks below #include using namespace std; void copy-stacks ( stack& source, stack& destination ); //The o…
Write a function to delete a specified node. Solution node *delete(node *head) {
Write a function to delete a specified node.
Write a function to delete all nodes greater than the first nodes\' data in Doub
Write a function to delete all nodes greater than the first nodes' data in Doubly linked list using C++. Right now my function only removes the next following number that's greate…
Write a function to delete an item in a // double linked list // NOTE: // A doub
Write a function to delete an item in a // double linked list // NOTE: // A double linked list has two pointers in each node // - p points to the next node // - rp points to the p…
Write a function to delete array elements with the following header: bool delete
Write a function to delete array elements with the following header: bool deleteElement (int ar [], int& size, int val_to_delete) where arr is an integer array, size is the nu…
Write a function to determine if a sentence is a \"pangram\" or not. A pangram,
Write a function to determine if a sentence is a "pangram" or not. A pangram, also known as a "holoalphabetic sentence" is a sentence that contains every letter of the alphabet. H…
Write a function to determine the day of the week a person was born given his or
Write a function to determine the day of the week a person was born given his or her birthday. The following steps should be used to find the day of the week corresponding to any …
Write a function to determine the day of the week a person was born given his or
Write a function to determine the day of the week a person was born given his or her birthday. The following steps should be used to find the day of the week corresponding to any …
Write a function to determine the number of T-junction in a city. You will be gi
Write a function to determine the number of T-junction in a city. You will be given a city map as a 100 by 100 integer array. The element in the array will be 1 or 0. An element i…
Write a function to determine whether 2 binary search trees are similar (same sh
Write a function to determine whether 2 binary search trees are similar (same shape but not necessarily the same data). The header should be template <typename T> bool are—s…
Write a function to do the inverse calculation. (This should be easy.) The input
Write a function to do the inverse calculation. (This should be easy.) The inputs are (i) today's cashflow F_0, (ii) future cashflow F_1, (iii) today's time f_0, (iv) future time …
Write a function to find duplicate characters in a string, if a duplicate is fou
Write a function to find duplicate characters in a string, if a duplicate is found, then break out of the search loop in the function and print the position of the detected duplic…
Write a function to find duplicate characters in a string, if a duplicate is fou
Write a function to find duplicate characters in a string, if a duplicate is found, then break out of the search loop in the function and print the position of the detected duplic…
Write a function to find the highest and lowest values in an array of numbers us
Write a function to find the highest and lowest values in an array of numbers using pointers (rather than subscripts). Also, write a main program to test this function by passing …
Write a function to find the minimum and maximum nodes within a BST and then rep
Write a function to find the minimum and maximum nodes within a BST and then replace the maximum node with the minimum node. Then, delete the minimum node. You should call the pro…
Write a function to find the minimum and maximum nodes within a BST and then rep
Write a function to find the minimum and maximum nodes within a BST and then replace the maximum node with the minimum node. Then, delete the minimum node. You should call the pro…
Write a function to find the minimum value of a vector and its index in the vect
Write a function to find the minimum value of a vector and its index in the vector using "for" and "if" statements and pass both values back out to a calling routine. The Gateway …
Write a function to find the powerset of a given set S. I have already written a
Write a function to find the powerset of a given set S. I have already written a set class in a previous assignment that works with strings and gives the union, cardinality and al…
Write a function to find the roots of the cubic equation in matlab without using
Write a function to find the roots of the cubic equation in matlab without using any of the root finding functions in Matlab. Your function statement should be function [ x ] = cu…
Write a function to find the sum of the m largest elements in an array of length
Write a function to find the sum of the m largest elements in an array of length n in C++. Function name bool sum_top(int a[], int n, int m, int & sum); The return type is boo…