Compare the CPU efficiency and memory efficiency between ArrayList and Vector.
You are tasked to:
Develop a program to compare the and between searching against java.util.ArrayList and searching against java.util. r. This program will:
1. Generate and store 200,000 random numbers in two data structures: ArrayList < Integer> Vector
2. Show the memory used by java.util.ArrayList
3. Show the memory used by java.util.Vector
4. Show the time used to search against java.util.Vector
5. Show the time used to search against java.util.ArrayList
For 4 and 5, you decide what numbers and how many numbers to search. Hence, it is not possible that 2 people could come up with an identical solution.)
This program generates 4 lines of output:
o Memory used by ArrayList
o Memory used by Vector
o Time used by ArrayList
o Time used by Vector
Put your program output in MS Word or pdf file and submit the file on Moodle.