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.

comFile1.txt has these numbers in the following order

10

20

25

25

30

35

comFile2.txt has these numbers in the following order

25

35

10

15

30

20

Step by Step Solution

3.37 Rating (153 Votes )

There are 3 Steps involved in it

1 Expert Approved Answer
Step: 1 Unlock

To solve this problem we need to write a C program that will read in the contents of the two files store them in arrays and then assess whether the ar... View full answer

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 Operating System Questions!