The driver. Open a Buffered Reader and a Printwriter, either from System.in * and System.out or from filenames specified on the command line, then call doIt. * @param args */ Run | Debug public static void main(String[] args) {

Database System Concepts
7th Edition
ISBN:9780078022159
Author:Abraham Silberschatz Professor, Henry F. Korth, S. Sudarshan
Publisher:Abraham Silberschatz Professor, Henry F. Korth, S. Sudarshan
Chapter1: Introduction
Section: Chapter Questions
Problem 1PE
icon
Related questions
Question

Read the input one line at a time and output the current line if and only if it is larger
than any other line read so far or strictly smaller than the previously outputted line. in java

and it has to be efficient and memeory efficient and you cant convert the strings to int. 

import java.util.*;
import java.io. Buffered Reader;
import java.io.FileReader;
import java.io.FileWriter;
import java.io.IOException;
import java.io.InputStreamReader;
import java.io.PrintWriter;
import java.util.Stack;
public class Part2 {
* Your code goes here - see Parte for an example
* @param r the reader to read from
* @param w the writer to write to
* @throws IOException
*/
public static void doIt (Buffered Reader r, PrintWriter w) throws IOException {
ArrayList<String> arr = new ArrayList<>();
}
/**
* The driver. Open a Buffered Reader and a PrintWriter, either from System.in
* and System.out or from filenames specified on the command line, then call doIt.
* @param args
*/
Run | Debug
public static void main(String[] args) {
try {
Buffered Reader r;
PrintWriter w;
if (args.length == 0) {
r = new Buffered Reader(new InputStreamReader (System.in));
w = new PrintWriter(System.out);
} else if (args.length == 1) {
r = new Buffered Reader (new FileReader(args[0]));
w = new PrintWriter(System.out);
} else {
r = new BufferedReader(new FileReader(args[0]));
w = new PrintWriter(new FileWriter(args[1]));
}
long start = System.nanoTime();
doIt(r, w);
w.flush();
long stop = System.nanoTime();
System.out.println("Execution time: " + 1e-9 * (stop-start));
} catch (IOException e) {
System.err.println(e);
Transcribed Image Text:import java.util.*; import java.io. Buffered Reader; import java.io.FileReader; import java.io.FileWriter; import java.io.IOException; import java.io.InputStreamReader; import java.io.PrintWriter; import java.util.Stack; public class Part2 { * Your code goes here - see Parte for an example * @param r the reader to read from * @param w the writer to write to * @throws IOException */ public static void doIt (Buffered Reader r, PrintWriter w) throws IOException { ArrayList<String> arr = new ArrayList<>(); } /** * The driver. Open a Buffered Reader and a PrintWriter, either from System.in * and System.out or from filenames specified on the command line, then call doIt. * @param args */ Run | Debug public static void main(String[] args) { try { Buffered Reader r; PrintWriter w; if (args.length == 0) { r = new Buffered Reader(new InputStreamReader (System.in)); w = new PrintWriter(System.out); } else if (args.length == 1) { r = new Buffered Reader (new FileReader(args[0])); w = new PrintWriter(System.out); } else { r = new BufferedReader(new FileReader(args[0])); w = new PrintWriter(new FileWriter(args[1])); } long start = System.nanoTime(); doIt(r, w); w.flush(); long stop = System.nanoTime(); System.out.println("Execution time: " + 1e-9 * (stop-start)); } catch (IOException e) { System.err.println(e);
}
public static void main(String[] args) {
try {
}
BufferedReader r;
PrintWriter w;
if (args.length == 0) {
r = new BufferedReader (new InputStreamReader (System.in));
w = new PrintWriter(System.out);
} else if (args.length == 1) {
r = new Buffered Reader(new FileReader(args[0]));
w = new PrintWriter(System.out);
} else {
r = new Buffered Reader(new FileReader(args[0]));
w = new PrintWriter(new FileWriter(args[1]));
}
long start = System.nanoTime();
doIt(r, w);
w.flush();
long stop = System.nanoTime();
System.out.println("Execution time: + 1e-9 * (stop-start));
} catch (IOException e) {
System.err.println(e);
System.exit(-1);
Transcribed Image Text:} public static void main(String[] args) { try { } BufferedReader r; PrintWriter w; if (args.length == 0) { r = new BufferedReader (new InputStreamReader (System.in)); w = new PrintWriter(System.out); } else if (args.length == 1) { r = new Buffered Reader(new FileReader(args[0])); w = new PrintWriter(System.out); } else { r = new Buffered Reader(new FileReader(args[0])); w = new PrintWriter(new FileWriter(args[1])); } long start = System.nanoTime(); doIt(r, w); w.flush(); long stop = System.nanoTime(); System.out.println("Execution time: + 1e-9 * (stop-start)); } catch (IOException e) { System.err.println(e); System.exit(-1);
Expert Solution
steps

Step by step

Solved in 3 steps

Blurred answer
Knowledge Booster
File Input and Output Operations
Learn more about
Need a deep-dive on the concept behind this application? Look no further. Learn more about this topic, computer-science and related others by exploring similar questions and additional content below.
Similar questions
  • SEE MORE QUESTIONS
Recommended textbooks for you
Database System Concepts
Database System Concepts
Computer Science
ISBN:
9780078022159
Author:
Abraham Silberschatz Professor, Henry F. Korth, S. Sudarshan
Publisher:
McGraw-Hill Education
Starting Out with Python (4th Edition)
Starting Out with Python (4th Edition)
Computer Science
ISBN:
9780134444321
Author:
Tony Gaddis
Publisher:
PEARSON
Digital Fundamentals (11th Edition)
Digital Fundamentals (11th Edition)
Computer Science
ISBN:
9780132737968
Author:
Thomas L. Floyd
Publisher:
PEARSON
C How to Program (8th Edition)
C How to Program (8th Edition)
Computer Science
ISBN:
9780133976892
Author:
Paul J. Deitel, Harvey Deitel
Publisher:
PEARSON
Database Systems: Design, Implementation, & Manag…
Database Systems: Design, Implementation, & Manag…
Computer Science
ISBN:
9781337627900
Author:
Carlos Coronel, Steven Morris
Publisher:
Cengage Learning
Programmable Logic Controllers
Programmable Logic Controllers
Computer Science
ISBN:
9780073373843
Author:
Frank D. Petruzella
Publisher:
McGraw-Hill Education