Question: JAVA PROGRAM (Please screenshot your output) SORT AND MERGE Write a program that performs the following tasks: Display a friendly greeting to the user Prompt

JAVA PROGRAM (Please screenshot your output) SORT AND MERGE

Write a program that performs the following tasks:

  • Display a friendly greeting to the user
  • Prompt the user for a file name (a list of numbers to be sorted)
  • Accept that file name
  • Prompt the user for a second file name (another list of numbers to be sorted)
  • Accept that file name
  • Open and read the data in the first file
  • Sort that data using an algorithm that you wrote yourself (notArray.sort)
    • One of the lists will be sufficiently large that a simple algorithm wont suffice
  • Open and read the data in the second file
  • Sort that data, again using your own algorithm
  • Merge the two sorted lists into a single sorted file (see Problem 7-31) using a linear algorithm.
  • Prompt the user for a file name
  • Create that file and dump the merged list to the file, using the format specified

The file format is as follows: a single integer, followed bythat numberof integers. That way you can open the file, read the first value, create an array of the appropriate size, and then read the rest of the file to populate the array. For example

10

1 2 3 4 5 6 7 8 9 10 11 12 13 14 15

is data in the specified format. The first 10 is the count, nota data item; the second one is.

Note that there can be more data items than indicated by the count; ignore the extras.

Every discrete task should be implemented as an independent method. At a minimum, you will have one sorting method and one merging method.

Step by Step Solution

There are 3 Steps involved in it

1 Expert Approved Answer
Step: 1 Unlock blur-text-image
Question Has Been Solved by an Expert!

Get step-by-step solutions from verified subject matter experts

Step: 2 Unlock
Step: 3 Unlock

Students Have Also Explored These Related Databases Questions!