Answered step by step
Verified Expert Solution
Question
1 Approved Answer
Objective: Implement an external sort routine. Description: Create a class called ExternalSort. Your class should have the following methods. You may add additional methods as
Objective: Implement an external sort routine. Description: Create a class called ExternalSort. Your class should have the following methods. You may add additional methods as needed. You Slide8 code from the textbook, but all other code must be your own. a) public static Path extsort(Path tl, int runsize) Uses the external sort procedure illustrated in chapter 7 to sort the file represented by Path tl using the passed size as the run size and returns a Path to the sorted result. For the tapes, use files named T1-T4. The data should already be on T1 when this method is called. You can assume the data consists of Integers. Your sort should work even if the number of input items is not a multiple of the run size. Note that "Path" is an object in Java's "java.nio.file" package. b) public static void main(String args[]) Accepts run size as a command line argument. Assumes input already exists on a file named T1. Calls the external sort routine. Prints the path object which gives the path to the sorted file
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