List all the seven functions in ascending order
What is a data structure? What is an Algorithm? And how do they affect runtime
A data structure is a systematic way of organizing and reaching data.
An algorithm is a set of instructions specifying how a specific task must be done within a finite amount of time
They affect runtime deciding how quickly accessible the data in the data structure is, which in turn affects runtime
How would you perform experimental studies on an algorithm?
Run the algorithm on a machine, test the algorithm with various input, measure the time the algorithm takes to run by using system.currenttimemillis() and record the results
What are the limitations of Experimental studies?(3)
Why is runtime analysis better?(3)