Arrays and File Input

Similar documents
Arrays - Review. Arrays as Parameters. Arrays as Parameters. Arrays and File Input. Dr. Papalaskari 1. CSC 1051 Data Structures and Algorithms I

Arrays and File Input

CSC 1051 Data Structures and Algorithms I. Dr. Mary-Angela Papalaskari Department of Computing Sciences Villanova University

CSC 1051 Data Structures and Algorithms I. Dr. Mary-Angela Papalaskari Department of Computing Sciences Villanova University

Arrays - Review. Two-Dimensional Arrays. Arrays, Part 2. Dr. Papalaskari 1. CSC 1051 Data Structures and Algorithms I

Arrays - Review. Initializer Lists. The for-each Loop. Arrays, Part 2. Dr. Papalaskari 1. CSC 1051 Data Structures and Algorithms I

CSC 1051 Data Structures and Algorithms I. Dr. Mary-Angela Papalaskari Department of Computing Sciences Villanova University

CSC 2014 Java Bootcamp. Dr. Mary-Angela Papalaskari Department of Computing Sciences Villanova University

Iterators and File Input

Arrays, Part 3: Multidimensional arrays

Method OverLoading printf method Arrays Declaring and Using Arrays Arrays of Objects Array as Parameters

Java Bootcamp - Villanova University. CSC 2014 Java Bootcamp. Dr. Mary-Angela Papalaskari Department of Computing Sciences Villanova University

Chapter 7. Arrays are objects that help us organize large amounts of information

Chapter 8 Arrays. Java Software Solutions. Foundations of Program Design Seventh Edition. John Lewis William Loftus

CSC 1051 Algorithms and Data Structures I. Final Examination May 2, Name:

CSC 1051 Data Structures and Algorithms I. Dr. Mary-Angela Papalaskari Department of Computing Sciences Villanova University

CSC 1051 Algorithms and Data Structures I. Final Examination December 20, Name: KEY. Question Value Score

CSC 1051 Algorithms and Data Structures I. Final Examination May 2, Name: Question Value Score

H212 Introduction to Software Systems Honors

Happy Cinco de Mayo!!!!

Happy Cinco de Mayo!!!!

Java Flow of Control

7.3 Arrays of Strings (Objects) 7.3 Arrays of Strings (Objects) 7.3 Tunes.java. 7.3 Arrays of Objects 9/11/13. ! A UML diagram for the Tunes program

CSC 1051 Algorithms and Data Structures I. Final Examination December 17, Name:

CSC 1051 Data Structures and Algorithms I

ECE 122. Engineering Problem Solving with Java

ECE 122. Engineering Problem Solving with Java

Lab 13. Name: Checked:

Introduction to Arrays

CSC 1051 Villanova University. CSC 1051 Data Structures and Algorithms I. Course website:

Algorithms and Java basics: pseudocode, variables, assignment, and interactive programs

CSC 1051 Algorithms and Data Structures I. Final Examination May 12, Name

Algorithms in everyday life. Algorithms. Algorithms and Java basics: pseudocode, variables, assignment, and interactive programs

Algorithms and Java basics: pseudocode, variables, assignment, and interactive programs

CSC 1051 Algorithms and Data Structures I. Final Examination May 12, Name: KEY. Question Value Score

Selection and Repetition Revisited

CSC 1051 Data Structures and Algorithms I

Selection Statements and operators

CSC 1051 Data Structures and Algorithms I

Java I/O and Control Structures

Arrays. Outline 1/7/2011. Arrays. Arrays are objects that help us organize large amounts of information. Chapter 7 focuses on:

Java I/O and Control Structures Algorithms in everyday life

Algorithms in everyday life. Algorithms. Algorithms and Java basics: pseudocode, variables, assignment, and interactive programs

Selection Statements and operators

CSC 1051 Algorithms and Data Structures I. Dr. Mary-Angela Papalaskari Department of Computing Sciences Villanova University

ing execution. That way, new results can be computed each time the Class The Scanner

Selection and Repetition Revisited

Conditionals and Loops Chapter 4. Instructor: Scott Kristjanson CMPT 125/125 SFU Burnaby, Fall 2013

Selection and Repetition

2: Basics of Java Programming

CSC 1051 Algorithms and Data Structures I. Dr. Mary-Angela Papalaskari Department of Computing Sciences Villanova University

Text User Interfaces. Keyboard IO plus

Algorithms and Conditionals

Designing Classes. Where do objects come from? Where do objects come from? Example: Account datatype. Dr. Papalaskari 1

CSC 1051 Algorithms and Data Structures I. Midterm Examination October 7, Name:

Graphical User Interfaces

Where do objects come from? Good question!

&KDSWHU$UUD\VDQG9HFWRUV

Graphical User Interfaces

Using Classes and Objects

Arrays Chapter 7. Instructor: Scott Kristjanson CMPT 125/125 SFU Burnaby, Fall 2013

CSC 1051 Data Structures and Algorithms I. Dr. Mary-Angela Papalaskari Department of Computing Sciences Villanova University

11/19/2014. Arrays. Chapter 6: Arrays. Arrays. Arrays. Java Software Solutions for AP* Computer Science A 2nd Edition

Selection and Repetition

CSC 1051 Data Structures and Algorithms I. Dr. Mary-Angela Papalaskari Department of Computing Sciences Villanova University

CSC 1051 Arrays - Review questions

COMP 202. Programming With Arrays

CSC 1051 Algorithms and Data Structures I. Midterm Examination February 25, Name: KEY A

Chapter 6: Arrays. Presentation slides for. Java Software Solutions. for AP* Computer Science 3rd Edition

CS Computers & Programming I Review_01 Dr. H. Assadipour

CS5000: Foundations of Programming. Mingon Kang, PhD Computer Science, Kennesaw State University

class declaration Designing Classes part 2 Getting to know classes so far Review Next: 3/18/13 Driver classes:

Chapter 5 Conditionals and Loops

CSC 1051 Algorithms and Data Structures I. Final Examination May 2, Name:

CSE 1223: Introduction to Computer Programming in Java Chapter 7 File I/O

I/O Streams. program. Standard I/O. File I/O: Setting up streams from files. program. File I/O and Exceptions. Dr. Papalaskari 1

Faculty of Science COMP-202A - Introduction to Computing I (Fall 2008) Final Examination

File I/O and Exceptions

I/O Streams. program. Standard I/O. File I/O: Setting up streams from files. program. File I/O and Exceptions. Dr. Papalaskari 1

I/O Streams. program. Standard I/O. File I/O: Setting up streams from files. program. File I/O and Exceptions. Dr. Papalaskari 1

Chapter. Let's explore some other fundamental programming concepts

Improved algorithm. Java code. Control flow and conditionals CSC 1051 Villanova University. Dr Papalaskari 1. Java Programè Algorithm

Java code. Updated program. Control flow and conditionals CSC 1051 Villanova University. Dr Papalaskari 1. Java Programè Algorithm. Improved algorithm

Basics of Java Programming variables, assignment, and input

CSC Algorithms and Data Structures I. Midterm Examination February 25, Name:

Control flow, conditionals, boolean expressions, block statements, nested statements. Course website:

COMP 202 File Access. CONTENTS: I/O streams Reading and writing text files. COMP 202 File Access 1

CSC 1051 Algorithms and Data Structures I. Final Examination December 18, Name:

COMP 202. Programming With Arrays

Arrays in Java Multi-dimensional Arrays

Computational Expression

H212 Introduction to Software Systems Honors

Computational Expression

Graphical User Interfaces

Reading Text Files. 1 Reading from text files: Scanner

Fundamentals of Programming Data Types & Methods

b[0] = 1 b[1] = 2 b[2] = 3 b[3] = 4 b[4] = 5 c[0] = 2 c[1] = 3 c[2] = 4 c[3] = 5 c[4] = 6

Lecture 3: Variables and assignment

CSC 1051 Data Structures and Algorithms I. Dr. Mary-Angela Papalaskari Department of Computing Sciences Villanova University

Reading Input from Text File

Transcription:

Arrays and File Input CSC 1051 Data Structures and Algorithms I Dr. Mary-Angela Papalaskari Department of Computing Sciences Villanova University Course website: www.csc.villanova.edu/~map/1051/ Some slides in this presentation are adapted from the slides accompanying Java Software Solutions by Lewis & Loftus

Arrays - Review element type Instantiation: Declaration: The entire array has a single name double[] scores = new double[10]; index array element scores[2] Initialization: scores 0 1 2 3 4 5 6 7 8 9 7.9 8.7 9.4 8.2 6.7 9.8 8.7 8.1 7.4 9.1 Size of array scores.length 10 scores[0] = 7.9; scores[1] = 8.7; scores[2] = 9.4; scores[3] = 8.2; scores[4] = 6.7; scores[5] = 9.8; scores[6] = 8.7; scores[7] = 8.1; scores[8] = 7.4; scores[9] = 9.1; Declaration, Instantiation, & Initialization combined: double[] scores = 7.9, 8.7, 9.4, 8.2, 6.7, 9.8, 8.7, 8.1, 7.4, 9.1;

Arrays as Parameters see Shapes.java An entire array can be passed as a parameter to a method (just like any other object). For example: // Draws a triangle and a V-shape using polygons and polylines. public void start(stage primarystage) double[] trianglepoints = 100, 150, 120, 40, 150, 110; Polygon triangle = new Polygon(trianglePoints); triangle.setfill(color.red); double[] pentagonpoints = 35, 70, 35, 40, 60, 20, 80, 40, 80, 60; Assumes Polygon pentagon a definition = new Polygon(pentagonPoints); for method average(), for example: pentagon.setfill(color.maroon); Polyline vee = new Polyline(trianglePoints); // note: using same array vee.setstroke(color.green); vee.setstrokewidth(3); Group root = new Group(triangle, pentagon, vee); Scene scene = new Scene(root, 200, 200, Color.BLACK); primarystage.settitle( Shapes"); primarystage.setscene(scene); primarystage.show();

Arrays as Parameters // Draws a triangle and a V-shape using polygons and polylines. public void start(stage primarystage) double[] trianglepoints = 100, 150, 120, 40, 150, 110; Polygon triangle = new Polygon(trianglePoints); triangle.setfill(color.red); double[] pentagonpoints = 35, 70, 35, 40, 60, 20, 80, 40, 80, 60; Polygon pentagon = new Polygon(pentagonPoints); pentagon.setfill(color.maroon); Assumes addten(trianglepoints); a definition for method average(), for example: Polyline vee = new Polyline(trianglePoints); // note: using same array vee.setstroke(color.green); vee.setstrokewidth(3); Group root = new Group(triangle, pentagon, vee); Scene scene = new Scene(root, 200, 200, Color.BLACK); public void addten(double[] a) for (int i = 0; i < a.length; i++) a[i] += 10; primarystage.settitle("triangles and Pentagons"); primarystage.setscene(scene); primarystage.show(); see Shapes.java Example: A method that adds 3 to the value of each element in an array.

Write a method that adds n (an int) to the value of each element in an array of type double[]. Try this method with Shapes.java: add code to draw a third, blue triangle shifted by some amount n

Command-Line Arguments It turns out we have been using arrays as parameters all along! public class Test public static void main (String[] args) System.out.println (); System.out.println (" " + args[0]); System.out.println (" " + args[1]); These values come from command-line arguments that are provided when the interpreter is invoked jgrasp calls them Run Arguments

What does it mean to copy an array? Suppose we have two arrays: int[] a = 147, 323, 89, 933; int[] b = 100, 200, 300, 400; Copying elements vs. copying array variables: for (int i=0; i<a.length; i++) a[i] = b[i]; a = b; Afterwards, what is the effect of the following? a[1] = 0; b[2] = 0;

1) Copying elements: a 0 1 2 3 147 323 89 933 b 0 1 2 3 100 200 300 400 Trace this code. What changes in the arrays? for (int i=0; i<a.length; i++) a[i] = b[i]; a[1] = 0; b[2] = 0;

2) Copying array variables: a 0 1 2 3 147 323 89 933 b 0 1 2 3 100 200 300 400 a = b; a[1] = 0; b[2] = 0; Trace this code. What changes in the arrays?

Arrays as Parameters - revisited How is using an array as a parameter like copying an array? // Draws a triangle and a V-shape using polygons and polylines. public void start(stage primarystage) double[] trianglepoints = 100, 150, 120, 40, 150, 110; Polygon triangle = new Polygon(trianglePoints); triangle.setfill(color.red); double[] pentagonpoints = 35, 70, 35, 40, 60, 20, 80, 40, 80, 60; Polygon pentagon = new Polygon(pentagonPoints); pentagon.setfill(color.maroon); Assumes addten(trianglepoints); a definition for method average(), for example: Polyline vee = new Polyline(trianglePoints); // note: using same array vee.setstroke(color.green); vee.setstrokewidth(3); Group root = new Group(triangle, pentagon, vee); Scene scene = new Scene(root, 200, 200, Color.BLACK); public void addten(double[] a) for (int i = 0; i < a.length; i++) a[i] += 10; primarystage.settitle("triangles and Pentagons"); primarystage.setscene(scene); primarystage.show();

Managing a collection of objects Example: a Movie database (collection of DVD objects)

//******************************************************************** // DVD.java Author: Lewis/Loftus/Papalaskari // // Represents a DVD video disc. // (*** modified from textbook version ***) // ********************************************************************im port java.text.numberformat; public class DVD private String title, director; private int year; private double cost; private boolean bluray; // Constructor: Creates a new DVD with the specified information. public DVD(String title, String director, int year, double cost, boolean bluray) this.title = title; this.director = director; this.year = year; this.cost = cost; this.bluray = bluray; continue

continue // Returns a string description of this DVD. public String tostring() NumberFormat fmt = NumberFormat.getCurrencyInstance(); String description; description = fmt.format(cost) + "\t" + year + "\t"; description += title + "\t" + director; if (bluray) description += "\t" + "Blu-Ray"; return description;

Test client create a few DVDs, print their info: //******************************************************************** // TestDVD.java Author: M A Papalaskari // // Test client for DVD.java //******************************************************************** public class TestDVD // Creates some DVD objects and prints their info public static void main(string[] args) = new DVD("Casablanca", "Michael Curtiz", 1942, 19.95, false); = new DVD("District 9", "Neill Blomkamp", 2009, 19.95, false); DVD one DVD two DVD three = new DVD("Iron Man", "Jon Favreau", 2008, 15.95, false); System.out.println (one); System.out.println (two); System.out.println (three);

What if we want to store more DVDs? //******************************************************************** // MyTenMovies.java Author: M A Papalaskari // // Test client for DVD.java //******************************************************************** public class MyTenMovies // Creates some MyTenMovies DVD objects and prints their info public static void main(string[] args) DVD[] list = new DVD[10]; Use an array of DVD objects: DVD list[0] one DVD list[1] two DVD list[2] three = new DVD("Iron Man", "Jon Favreau", 2008, 15.95, false); = new DVD("Casablanca", "Michael Curtiz", 1942, 19.95, false); = new DVD("District 9", "Neill Blomkamp", 2009, 19.95, false); System.out.println for (DVD item: list) (one); System.out.println (two); System.out.println (item); System.out.println (three);

What if we want to store more DVDs? //******************************************************************** // MyTenMovies.java Author: M A Papalaskari // // Test client for DVD.java //******************************************************************** public class MyTenMovies // Creates some MyTenMovies DVD objects and prints their info public static void main(string[] args) DVD[] list = new DVD[10]; Use an array of DVD objects: Problem: fixed size DVD list[0] one DVD list[1] two DVD list[2] three = new DVD("Iron Man", "Jon Favreau", 2008, 15.95, false); = new DVD("Casablanca", "Michael Curtiz", 1942, 19.95, false); = new DVD("District 9", "Neill Blomkamp", 2009, 19.95, false); System.out.println for (DVD item: list) (one); System.out.println (two); System.out.println (item); System.out.println (three); Next: A collection of DVD s that can grow to accommodate as many items as needed!

Managing a collection of objects Example: a Movie database (collection of DVD objects) Movies.java DVDCollection.java DVD.java

//******************************************************************** // Movies.java Author: Lewis/Loftus // // Demonstrates the use of an array of objects. //******************************************************************** public class Movies // Creates a DVDCollection object and adds some DVDs to it. Prints // reports on the status of the collection. public static void main(string[] args) DVDCollection movies = new DVDCollection(); movies.adddvd("the Godfather", "Francis Ford Coppala", 1972, 24.95, true); movies.adddvd("district 9", "Neill Blomkamp", 2009, 19.95, false); movies.adddvd("iron Man", "Jon Favreau", 2008, 15.95, false); movies.adddvd("all About Eve", "Joseph Mankiewicz", 1950, 17.50, false); movies.adddvd("the Matrix", "Andy & Lana Wachowski", 1999, 19.95, true); System.out.println(movies); movies.adddvd("iron Man 2", "Jon Favreau", 2010, 22.99, false); movies.adddvd("casablanca", "Michael Curtiz", 1942, 19.95, false); System.out.println(movies); Copyright 2014 Pearson Education, Inc.

//******************************************************************** // Movies.java Output Author: Lewis/Loftus // // Demonstrates ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ the use of an array of objects. //******************************************************************** My DVD Collection public class Movies Number of DVDs: 5 Total cost: $98.30 // Average Creates cost: a DVDCollection $19.66 object and adds some DVDs to it. Prints // reports on the status of the collection. DVD List: public static void main (String[] args) $24.95 1972 The Godfather Francis Ford Coppala Blu-Ray DVDCollection movies = new DVDCollection(); $19.95 2009 District 9 Neill Blomkamp $15.95 movies.adddvd 2008 ("The Iron Godfather", Man "Francis Jon Favreau Ford Coppala", 1972, 24.95, true); $17.50 movies.adddvd 1950 ("District All About 9", Eve "Neill Joseph Blomkamp", Mankiewicz 2009, 19.95, false); $19.95 movies.adddvd 1999 ("Iron The Matrix Man", "Jon Favreau", Andy & Lana 2008, Wachowski 15.95, false); Blu-Ray movies.adddvd ("All About Eve", "Joseph Mankiewicz", 1950, 17.50, false); continue movies.adddvd ("The Matrix", "Andy & Lana Wachowski", 1999, 19.95, true); System.out.println(movies); movies.adddvd("iron Man 2", "Jon Favreau", 2010, 22.99, false); movies.adddvd("casablanca", "Michael Curtiz", 1942, 19.95, false); System.out.println(movies); Copyright 2014 Pearson Education, Inc.

//******************************************************************** // Movies.java Output Author: Lewis/Loftus // // Demonstrates ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ the use of an array of objects. //******************************************************************** My DVD Collection Output (continued) public class Movies Number of DVDs: 5 Total ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ cost: $98.30 // Average Creates My DVD cost: a DVDCollection $19.66 object and adds some DVDs to it. Prints // reports on the status of the collection. DVD List: Number of DVDs: 7 public static Total void cost: main $141.24 (String[] args) $24.95 Average 1972 cost: The Godfather $20.18 Francis Ford Coppala Blu-Ray DVDCollection movies = new DVDCollection(); $19.95 2009 District 9 Neill Blomkamp $15.95 movies.adddvd 2008 List: ("The Iron Godfather", Man "Francis Jon Favreau Ford Coppala", 1972, 24.95, true); $17.50 movies.adddvd 1950 ("District All About 9", Eve "Neill Joseph Blomkamp", Mankiewicz 2009, 19.95, false); $19.95 movies.adddvd $24.95 1999 1972 ("Iron The Matrix Man", The Godfather "Jon Favreau", Andy Francis & Lana 2008, Wachowski 15.95, Ford Coppala false); Blu-Ray Blu-Ray movies.adddvd $19.95 2009 ("All About District Eve", "Joseph 9 Neill Mankiewicz", Blomkamp 1950, 17.50, false); continue movies.adddvd $15.95 2008 ("The Matrix", Iron Man "Andy & Lana Jon Wachowski", Favreau 1999, 19.95, true); $17.50 1950 All About Eve Joseph Mankiewicz System.out.println (movies); $19.95 1999 The Matrix Andy & Lana Wachowski Blu-Ray movies.adddvd $22.99 2010 ("Iron Man Iron 2", Man "Jon 2 Favreau", Jon Favreau 2010, 22.99, false); movies.adddvd $19.95 1942 ("Casablanca", Casablanca "Michael Curtiz", Michael 1942, Curtiz 19.95, false); System.out.println(movies); Copyright 2014 Pearson Education, Inc.

//******************************************************************** // DVDCollection.java Author: Lewis/Loftus/Papalaskari // // Represents a collection of DVD objects // (*** modified from textbook version ***) //******************************************************************** import java.text.numberformat; public class DVDCollection private DVD[] collection; private int count; // Constructor: Creates an initially empty collection. public DVDCollection() collection = new DVD[100]; count = 0; continue

continue // Adds a DVD to the collection, increasing the size of the // collection array if necessary. public void adddvd(string title, String director, int year, double cost, boolean bluray) if (count == collection.length) increasesize(); collection[count] = new DVD(title, director, year, cost, bluray); count++; continue

continue // Returns a report describing the DVD collection. public String tostring() NumberFormat fmt = NumberFormat.getCurrencyInstance(); String report = "~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~\n"; report += "My DVD Collection\n\n"; report += "Number of DVDs: " + count + "\n"; report += "\n\ndvd List:\n\n"; for (int i = 0; i < count; i++) report += collection[i].tostring() + "\n"; return report; continue

continue // Increases the capacity of the collection by creating a // larger array and copying the existing collection into it. private void increasesize() DVD[] temp = new DVD[collection.length * 2]; for (int i = 0; i < collection.length; i++) temp[i] = collection[i]; collection = temp;

Two-Dimensional Arrays A one-dimensional array stores a list of elements A two-dimensional array can be thought of as a table of elements, with rows and columns one dimension two dimensions

declaration coursegrade 2D Array Example double[][] coursegrade = new double[3][10]; 2D array element coursegrade[1][4] 0 1 2 3 4 5 6 7 8 9 7.9 8.7 9.4 8.2 6.7 9.8 8.7 8.1 7.4 9.1 0 1 2 0 1 2 3 4 5 6 7 8 9 9.3 5.8 6.9 5.5 9.0 8.3 7.7 9.2 9.8 8.2 0 1 2 3 4 5 6 7 8 9 8.9 8.0 8.4 6.2 7.7 7.3 9.6 6.1 7.8 7.3 array element (a row) coursegrade[2]

//******************************************************************** // TwoDArray.java Author: Lewis/Loftus // // Demonstrates the use of a two-dimensional array. //******************************************************************** 2D Array Example from textbook public class TwoDArray // Creates a 2D array of integers, fills it with increasing // integer values, then prints them out. public static void main (String[] args) int[][] table = new int[5][10]; // Load the table with values for (int row=0; row < table.length; row++) for (int col=0; col < table[row].length; col++) table[row][col] = row * 10 + col; // Print the table for (int row=0; row < table.length; row++) for (int col=0; col < table[row].length; col++) System.out.print (table[row][col] + "\t"); System.out.println();

2D Array Example from textbook //******************************************************************** // TwoDArray.java Author: Lewis/Loftus // // Demonstrates the use of a two-dimensional array. //******************************************************************** Output 0 1 2 3 4 5 6 7 8 9 10 public 11 class 12 TwoDArray 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 // 41 Creates 42 a 2D array 43 of integers, 44 45 fills it 46 with increasing 47 48 49 // integer values, then prints them out. public static void main (String[] args) int[][] table = new int[5][10]; // Load the table with values for (int row=0; row < table.length; row++) for (int col=0; col < table[row].length; col++) table[row][col] = row * 10 + col; // Print the table for (int row=0; row < table.length; row++) for (int col=0; col < table[row].length; col++) System.out.print (table[row][col] + "\t"); System.out.println();

Two-Dimensional Arrays Types? Expression Type Description table int[][] 2D array of integers, or array of integer arrays table[5] int[] array of integers table[5][12] int integer An array can have many dimensions if it has more than one dimension, it is called a multidimensional array Each dimension subdivides the previous one into the specified number of elements Each dimension has its own length constant Because each dimension is an array of array references, the arrays within one dimension can be of different lengths (these are sometimes called ragged arrays)

//******************************************************************** // SodaSurvey.java Author: Lewis/Loftus // // Demonstrates the use of a two-dimensional array. //******************************************************************** Another 2D Array Example from textbook import java.text.decimalformat; public class SodaSurvey // Determines and prints the average of each row (soda) and each // column (respondent) of the survey scores. public static void main(string[] args) int[][] scores = 3, 4, 5, 2, 1, 4, 3, 2, 4, 4, 2, 4, 3, 4, 3, 3, 2, 1, 2, 2, 3, 5, 4, 5, 5, 3, 2, 5, 5, 5, 1, 1, 1, 3, 1, 2, 1, 3, 2, 4 ; continue final int SODAS = scores.length; final int PEOPLE = scores[0].length; int[] sodasum = new int[sodas]; int[] personsum = new int[people]; Copyright 2014 Pearson Education, Inc.

Output Averages: Another 2D Array Example from textbook continue for (int soda=0; soda < SODAS; soda++) for (int person=0; person < PEOPLE; person++) sodasum[soda] += scores[soda][person]; personsum[person] += scores[soda][person]; DecimalFormat fmt = new DecimalFormat ("0.#"); System.out.println ("Averages:\n"); for (int soda=0; soda < SODAS; soda++) System.out.println ("Soda #" + (soda+1) + ": " + fmt.format ((float)sodasum[soda]/people)); System.out.println (); for (int person=0; person < PEOPLE; person++) System.out.println ("Person #" + (person+1) + ": " + fmt.format ((float)personsum[person]/sodas)); Soda #1: 3.2 Soda #2: 2.6 Soda #3: 4.2 Soda #4: 1.9 Person #1: 2.2 Person #2: 3.5 Person #3: 3.2 Person #4: 3.5 Person #5: 2.5 Person #6: 3 Person #7: 2 Person #8: 2.8 Person #9: 3.2 Person #10: 3.8 Copyright 2014 Pearson Education, Inc.

Iterators Iterating: to process a collection of items, one at a time Typical iterator methods: next() returns the next item hasnext() - returns true if there is at least one more item to process Several classes in the Java standard class library are iterators

Tokens items to be processed are called tokens Examples: words, numbers, components of a url The Scanner class is an iterator next() returns the next scanned token (a String) nextline() returns the rest of the line (until the next new line). hasnext() returns true if there is more data to be scanned Variations of next() and hasnext() methods: nextint() hasnextint() nextdouble() hasnextdouble()

Using Scanner to read from a file Create a File object: File myfile = new File("sample.txt"); Create a Scanner to read from the File object: Scanner filescan = new Scanner (myfile); Use next() to obtain next token Use nextline() to obtain entire line of text (until \n) Use hasnext() to test whether you are done

File Input Example: FileInput.java import java.util.scanner; import java.io.*; public class FileInput //---------------------------------------------------------------- // Reads text from a file and prints it in uppercase. //---------------------------------------------------------------- public static void main (String[] args) throws IOException String line; File myfile = new File("sample.txt"); Scanner filescan = new Scanner (myfile)); // Read and process each line of the file while (filescan.hasnext()) line = filescan.nextline(); System.out.println (line.touppercase()); CSC 2014 M.A. Papalaskari, Villanova University

File Input Example: FileInput.java import java.util.scanner; import java.io,*; sample.txt Computers are useless. They can only give you answers. public class FileInput Pablo Picasso (1881-1973) //---------------------------------------------------------------- // Reads text from Run a Output file and prints it in uppercase. //---------------------------------------------------------------- COMPUTERS ARE USELESS. THEY CAN ONLY GIVE YOU ANSWERS. public static void PABLO main PICASSO (String[] (1881-1973) args) throws IOException String line; File myfile = new File("sample.txt"); Scanner filescan = new Scanner (myfile)); // Read and process each line of the file while (filescan.hasnext()) line = filescan.nextline(); System.out.println (line.touppercase()); CSC 2014 M.A. Papalaskari, Villanova University

Try this: What gets printed? //**************************************************************** sample1.txt // SomethingToDoWithFiles.java Author: MAP //**************************************************************** do import java.util.scanner; re import java.io.*; mi sample2.txt fa sol public class SomethingToDoWithFiles public static void main (String[] args) throws IOException String line1, line2; Scanner filescan1, filescan2; filescan1 = new Scanner (new File("sample1.txt")); filescan2 = new Scanner (new File("sample2.txt")); while (filescan1.hasnext() && filescan2.hasnext()) line1 = filescan1.nextline(); line2 = filescan2.nextline(); System.out.println (line1 + line2 + line1); System.out.println(fileScan1.hasNext()? "ping!": "pong!");

Scanner another example: reading from a file AND from a String Suppose we wanted to read and process a list of URLs (or other data items) stored in a file One scanner can be set up to read each line of the input until the end of the file is encountered Another scanner can be set up to process each line, i.e., separating the components of each URL (at each occurrence of / ) Example: URL: www.linux.org/info/gnu.html This URL specifies a path consisting of the following components: www.linux.org info gnu.html See URLDissector.java

//******************************************************************** // URLDissector.java Author: Lewis/Loftus // // Demonstrates the use of Scanner to read file input and parse it // using alternative delimiters. //******************************************************************** import java.util.scanner; import java.io.*; public class URLDissector // Reads urls from a file and prints their path components. public static void main (String[] args) throws IOException String url; Scanner filescan, urlscan; continue filescan = new Scanner (new File("urls.txt"));

continue // Read and process each line of the file while (filescan.hasnext()) url = filescan.nextline(); System.out.println ("URL: " + url); urlscan = new Scanner (url); urlscan.usedelimiter("/"); // Print each part of the url while (urlscan.hasnext()) System.out.println (" " + urlscan.next()); default delimiter is white space, we are changing this here System.out.println();

continue Sample Run URL: www.google.com www.google.com // Read and process each line of the file while (filescan.hasnext()) URL: www.linux.org/info/gnu.html www.linux.org url = filescan.nextline(); info System.out.println gnu.html ("URL: " + url); urlscan = new Scanner (url); URL: thelyric.com/calendar/ urlscan.usedelimiter("/"); thelyric.com // Print calendar each part of the url while (urlscan.hasnext()) System.out.println URL: www.cs.vt.edu/undergraduate/about (" " + urlscan.next()); www.cs.vt.edu System.out.println(); undergraduate about URL: youtube.com/watch?v=ehcrimwrgls youtube.com watch?v=ehcrimwrgls