Question: Write a C++ program that will compare two arrays to test for the same elements and multiplicity. To begin, populate the arrays with the input

Write a C++ program that will compare two arrays to test for the same elements and multiplicity. To begin, populate the arrays with the input files, comFile1.txt and comFile2.txt. The elements in the arrays do not need to be in the same order for them to be considered similar.

For example: array 1: 121 144 19 161 19 144 19 11 array 2: 11 121 144 19 161 19 144 19 would be considered to have the same elements because 19 appears 3 times in each array, 144 appears twice in each array, and all other elements appear once in each array.

NOTE: use pointer notation instead of array notation whenever possible. Display whether or not the arrays have the same elements and multiplicity.

These are the numbers on each text file:

comFile1.txt :

10

20

25

25

30

35

comFile2.txt

25

35

10

15

30

20

Step by Step Solution

There are 3 Steps involved in it

1 Expert Approved Answer
Step: 1 Unlock blur-text-image
Question Has Been Solved by an Expert!

Get step-by-step solutions from verified subject matter experts

Step: 2 Unlock
Step: 3 Unlock

Students Have Also Explored These Related Databases Questions!