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
Step: 1
Get Instant Access to Expert-Tailored Solutions
See step-by-step solutions with expert insights and AI powered tools for academic success
Step: 2
Step: 3
Ace Your Homework with AI
Get the answers you need in no time with our AI-driven, step-by-step assistance
Get Started