Create Program( C# or Java)-Code Is Complete Need fix for Conio.h

profileldlmofgan28
  1. Write a computer program that prompts the user for a number, creates an array for that number of random integers, and then uses the sophisticated form of bubble sort to order the array. The program should print out the array prior to the call to the sorting algorithm and afterwards. You can write the program in either Java, C++, C#, or whatever language you are most comfortable in.
  2. Repeat 1 but use selection sort this time.

1 and 2 are primarily intended to make sure that your algorithms work.

Once you are convinced your programs work, do the following

  1. Write a computer program that prompts the user for two numbers, n for the number of items in the array to sort, and num_ifor a number of iterations. Then do the following:

    Initiate a variable running_time to 0

    Create a for loop that iterates num_i times.

    In the body of the loop,

    Create an array of n random integers

    Get the time and set this to start-time. You will have to figure out what the appropriate command is in the programming language you are using to find them time

    Use sophisticated bubble sort to sort the array

    Get the time and set this to end-time

    Subtract end-time from start-time and add the result to running_time

    Once the program has run, note

    The number of items sorted

    The number of iterations

    The running time

    Repeat the process nine times, using 50, 100 and 500 as the size of the array, and 100, 1000 and 10,000 as the number of iterations.

  2. Repeat 3 using selection sort.

Please submit

  1. Program code for 1 and the three program runs
  2. Program code for 2 and the three program runs
  3. Program code used in 3
  4. Program code used in 4
    • 11 years ago
    • 10
    Answer(1)

    Purchase the answer to view it

    blurred-text
    NOT RATED
    Bids(1)