Answered step by step
Verified Expert Solution
Link Copied!

Question

1 Approved Answer

Java Objective: Implement an external sort routine. Description: Create a class called ExternalSort. Your class should have the following methods. You may add additional methods

Java

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 may use code from the textbook, but all other code must be your own.

80 points

a) public static Path extsort(Path t1, int runsize) Uses the external sort procedure illustrated in chapter 7 to sort the file represented by Path t1 using the passed size as the run size and returns a Path to the sorted result.

image text in transcribed

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.

20 points

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.

TI has the input data to sort ?? 5718215568143964 T2 Suppose 4 at a time can be sorted in memory. Each sorted run is written to an alternate tape. T31 5 78A/1 4 6 8 T41 2 5 5 3 4 6 9 Now, merge corresponding runs ??/1 1255578 T2 3 44 6 6 8 9 and continue merging until everything is in one list. T3 1 1 1 2 3445 5 5 6 67 8 8 9 TI has the input data to sort ?? 5718215568143964 T2 Suppose 4 at a time can be sorted in memory. Each sorted run is written to an alternate tape. T31 5 78A/1 4 6 8 T41 2 5 5 3 4 6 9 Now, merge corresponding runs ??/1 1255578 T2 3 44 6 6 8 9 and continue merging until everything is in one list. T3 1 1 1 2 3445 5 5 6 67 8 8 9

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

Database And Expert Systems Applications 19th International Conference Dexa 2008 Turin Italy September 2008 Proceedings Lncs 5181

Authors: Sourav S. Bhowmick ,Josef Kung ,Roland Wagner

2008th Edition

3540856536, 978-3540856535

More Books

Students also viewed these Databases questions

Question

Find out the materials that you enjoy working with.

Answered: 1 week ago