You will also modify your program to accept input from an


Question: You are to add mean, standard deviation, and insert in order functionality to your statistics list program. Insert in order means that you will add a function called find_index that will locate the place in the array that a new value should be inserted. It will then call insert_at, which will move the appropriate, existing elements of the array so that the new element may be inserted in its proper index. So insert_at will be called by find_index, which will be called by insert_in_order. Insert_in_order reads in each new value and calls find_index with it, setting off a chain as described above that ends with each element inserted at the right index so that the array is assembled in order. Therefore, selection_sort can be removed from your program.

You will also modify your program to accept input from an input file and print a report to an output file. These files are to be named by the user at runtime. The output report is to include the array values, in whatever order they are in, the mean, median, and standard deviation in a neat, tabular format of your choice.

I will provide a list of double values file that you will use to examine your program, so you need not turn in an input or output file.

I am having difficulty with this program because I do not know where to start with.

Request for Solution File

Ask an Expert for Answer!!
JAVA Programming: You will also modify your program to accept input from an
Reference No:- TGS0958463

Expected delivery within 24 Hours