C++ program Write a function named "eliminate_duplicates" that takes values of integers in random order and create 1D- dynamic array; eliminates all the duplicate integers in the array. The size and the value will be passed (size will be passed by reference. The function should not return a value, but if any duplicate integers are eliminated, then the function should change the value of the argument that was passed to it so that the new value tells the number of distinct integers in the array. Here is an example. Suppose the array passed to the function is as shown below, and the integer passed as an argument to the function is 11. 0 1 2 3 4 5 6 7 8 9 10 58 26 91 34 70 34 88 29 41 10 66 Then the function should alter the array so that it looks like this: 0 1 2 3 4 5 6 7 8 9 10 58 26 91 34 70 ?? ?? ?? ?? ?? ?? And it should change the value of the argument so that it is 5 instead of 11. The question marks in the cells after the 5th cell indicate that it does not matter what numbers are in those cells when the function returns.
C++ program
Write a function named "eliminate_duplicates" that takes values of integers in random order and
create 1D- dynamic array; eliminates all the duplicate integers in the array. The size and the
value will be passed (size will be passed by reference.
The function should not return a value, but if any duplicate integers are eliminated, then the
function should change the value of the argument that was passed to it so that the new value tells
the number of distinct integers in the array. Here is an example. Suppose the array passed to the
function is as shown below, and the integer passed as an argument to the function is 11.
0 1 2 3 4 5 6 7 8 9 10
58 26 91 34 70 34 88 29 41 10 66
Then the function should alter the array so that it looks like this:
0 1 2 3 4 5 6 7 8 9 10
58 26 91 34 70 ?? ?? ?? ?? ?? ??
And it should change the value of the argument so that it is 5 instead of 11. The question marks
in the cells after the 5th cell indicate that it does not matter what numbers are in those cells when
the function returns.
Trending now
This is a popular solution!
Step by step
Solved in 2 steps with 2 images