Question
Using JSFiddle and JavaScript create a program that will instantiate an integer array of size 1000. Fill each array element with a random integer between
Using JSFiddle and JavaScript create a program that will instantiate an integer array of size 1000. Fill each array element with a random integer between 1 and 100.
You will write a function with 3 arguments. The name of the function will be InsertIntoArray. Argument 1 is the array, argument 2 is the index of where you are going to insert a new number, argument 3 is the number to insert. The program should insert the new number at the index given and shift all the previous entries index up by 1. Since the array is capped at 1000, the highest element of the array will be deleted. Count the number of operations performed on the array and output this to the screen. An operation is if you assign a value or compare a value - only compare or assign operations should be counted.
Change the array size to 100 and insert into a different index in the array. State using Big O Notation your time complexity and be prepared to justify your answer.
Programming parameters:
1. Create the array in Javascript: var array = new Array(1000);
2. Create a loop to assign each array element a random value.
3. Do not use push or splice commands - assign elements by using = (in code)
4. When inserting you will be pushing the last value off the end of the array (everything shifts right)
5. Use a global counter to count every time you make an assignment (use an = or == operator)
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