Question

In: Computer Science

Please answer in c++ 6.Define a function to find a given target value in an array,...

Please answer in c++

6.Define a function to find a given target value in an array, but use pointer notation rather than array notation whenever possible.

7.Write a swap function, that swaps the values of two variables in main, but use pointers instead of reference parameters.

8.Write a function that takes an array of ints and its size as arguments. It should create a new array that is the same size as the argument. It should set the values in the new array by adding 10 to each element in the original array. The function should return a pointer to the new array. (Make sure you use dynamic memory allocation and try to get the syntax right).

Solutions

Expert Solution

6.

The required function is given below:

//#function to find the target value
int findTarget(int arr[], int size, int target)
{
for(int i=0; i<size; i++)
{
if(target == *(arr+i))
return i;
}
  
return -1;
}

The screenshot of the above function is given below:

7.

The required function is given below:

//function to swap two values
void swap(int *a, int *b)
{
//temp variable declaration
int temp;
  
//swap the values
temp = *a;
*a = *b;
*b = temp;
}

The screenshot of the above function is given below:

8.

The required function is given below:

//function to add 10 to the each element of the array
int * findTarget(int arr[], int size)
{
int *ptr = (int *) malloc(size * sizeof(int));
for(int i=0; i<size; i++)
{
*(ptr+i) = *(arr+i) + 10;
}
  
return ptr;
}

The screenshot of the above function is given below:


Related Solutions

Define the concepts which are given below a) Promotion     b) Target group                 c) Target audience      ...
Define the concepts which are given below a) Promotion     b) Target group                 c) Target audience       d) Public           
please write in c++ Algorithm Design problem: Counting inversions: given an array of n integers, find...
please write in c++ Algorithm Design problem: Counting inversions: given an array of n integers, find out the total number of inversions in the given sequence. For example, for the sequence of 2, 4, 1, 3, 5, there are three inversions (2,1), (4,1), and (4,3). Give a brute-force algorithm with running time of O(n^2). Using the technique of divide-and-conquer, design an algorithm with running time of O(nlog n).
Write a C++ program to find the number of pairs of integers in a given array...
Write a C++ program to find the number of pairs of integers in a given array of integers whose sum is equal to a specified number.
c++ please 1. Write and test the function maximum that is passed an array of n...
c++ please 1. Write and test the function maximum that is passed an array of n pointers to integers and returns the maximum value among the n integers. The function must use the travellingpointer(1stversion) notation to traverse the array. The function has the following prototype. int maximum ( int *p [ ], int n); 2. Implement the function psum( )that is passed an array of n floats and returns a pointer to the sum of such an array. Print the...
Use C Programming - Given an array of integers and a number K, find the smallest...
Use C Programming - Given an array of integers and a number K, find the smallest element in array greater than or equal to K. If such element exists in the array, display it otherwise display "-1". Example: Input:     8     1 3 4 7 8 9 9 10     5     where: First line represents the number of elements in the array. Second line represents the elements in the array. Third line represents the value of K. Output:     7 Explanation:...
Write a C++ program to find K largest elements in a given array of integers. For...
Write a C++ program to find K largest elements in a given array of integers. For eeample, if K is 3, then your program should ouput the largest 3 numbers in teh array. Your program is not supposed to use any additional array.
in C programming language Write a function removeDups that removes all duplicates in a given array...
in C programming language Write a function removeDups that removes all duplicates in a given array of type int. Sample Test Case: input -> {1,2,2,2,3,3,4,2,4,5,6,6} output -> {1,2,3,4,5,6,0,0,0,0,0,0} More specifically, the algorithm should only keep the first occurance of each element in the array, in the order they appear. In order to keep the array at the same length, we will replace the removed elements with zeros, and move them to the end of the array.
answer in c++ , Write the definition of the function NthOccurrence() whose header is int NthOccurrence(Array&...
answer in c++ , Write the definition of the function NthOccurrence() whose header is int NthOccurrence(Array& data,const T& value,int n) template It returns the index of the nth occurrence of value in data. If n is not positive, value appears less than n times in data or data is empty, it returns -1.
Write a C function that finds and displays the maximum value ina two-dimensional array of...
Write a C function that finds and displays the maximum value in a two-dimensional array of integers. The array should be declared as a 10-row-by-20-column array of integers in main (), and the starting the address of the array should be passed to the function. Modify the function so that it also displays the rows and columns number of the element with the maximum value
The cost function C and the price-demand function p are given. Assume that the value of...
The cost function C and the price-demand function p are given. Assume that the value of C(x) and p(x) are in dollars. Complete the following. C(x) = x2 100 + 7x + 2000; p(x) = − x 40 + 5 (a) Determine the revenue function R and the profit function P. R(x) = P(x) = (b) Determine the marginal cost function MC and the marginal profit function MP. MC(x) = MP(x) = Here is a picture of the problem: https://gyazo.com/6ce694b737f7dd4cfb20fbb9d1917420
ADVERTISEMENT
ADVERTISEMENT
ADVERTISEMENT