Answered step by step
Verified Expert Solution
Link Copied!

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

image text in transcribed

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

blur-text-image

Get Instant Access to Expert-Tailored Solutions

See step-by-step solutions with expert insights and AI powered tools for academic success

Step: 2

blur-text-image

Step: 3

blur-text-image

Ace Your Homework with AI

Get the answers you need in no time with our AI-driven, step-by-step assistance

Get Started

Recommended Textbook for

More Books

Students also viewed these Databases questions

Question

2 What backs the money supply.

Answered: 1 week ago

Question

Why is the System Build Process an iterative process?

Answered: 1 week ago