06 slide

116
1 Liang, Introduction to Java Programming, Seventh Edition, (c) 2009 Pea rson Education, Inc. All rights reserved. 0136012671 Chapter 6 Arrays

Upload: devinliao

Post on 10-Apr-2015

240 views

Category:

Documents


4 download

TRANSCRIPT

Page 1: 06 Slide

1Liang, Introduction to Java Programming, Seventh Edition, (c) 2009 Pearson Education, Inc. All rights reserved. 0136012671

Chapter 6 Arrays

Page 2: 06 Slide

2Liang, Introduction to Java Programming, Seventh Edition, (c) 2009 Pearson Education, Inc. All rights reserved. 0136012671

MotivationsOften you will have to store a large number of values during the execution of a program. Suppose, for instance, that you need to read one hundred numbers, compute their average, and find out how many numbers are above the average. Your program first reads the numbers and computes their average, and then compares each number with the average to determine whether it is above the average. The numbers must all be stored in variables in order to accomplish this task. You have to declare one hundred variables and repeatedly write almost identical code one hundred times. From the standpoint of practicality, it is impossible to write a program this way. So, how do you solve this problem?

Page 3: 06 Slide

3Liang, Introduction to Java Programming, Seventh Edition, (c) 2009 Pearson Education, Inc. All rights reserved. 0136012671

Objectives To describe why arrays are necessary in programming (§6.1). To learn the steps involved in using arrays: declaring array reference variables

and creating arrays (§§6.2.1-6.2.2). To initialize the values in an array (§6.2.3). To access array elements using indexed variables (§6.2.4). To simplify programming using the JDK 1.5 foreach loops (§6.2.5). To declare, create, and initialize an array using an array initializer (§6.2.6). To copy contents from one array to another (§6.3). To develop and invoke methods with array arguments and return value (§6.4-

6.5). To declare a method with variable-length argument list (§6.6). To search elements using the linear (§6.7.1) or binary (§6.7.2) search algorithm. To sort an array using the selection sort (§6.8.1) To sort an array using the insertion sort algorithm (§6.8.2). To use the methods in the Arrays class (§6.9). To declare and create two-dimensional arrays to solve interesting problems such

as Sudoku (§6.10). To declare and create multidimensional arrays (§6.11).

Page 4: 06 Slide

4Liang, Introduction to Java Programming, Seventh Edition, (c) 2009 Pearson Education, Inc. All rights reserved. 0136012671

Introducing ArraysArray is a data structure that represents a collection of the same types of data.

5.6

4.5

3.3

13.2

4

34.33

34

45.45

99.993

11123

double[] myList = new double[10];

myList reference myList[0]

myList[1]

myList[2]

myList[3]

myList[4]

myList[5]

myList[6]

myList[7]

myList[8]

myList[9]

Element value

Array reference variable

Array element at index 5

Page 5: 06 Slide

5Liang, Introduction to Java Programming, Seventh Edition, (c) 2009 Pearson Education, Inc. All rights reserved. 0136012671

Declaring Array Variables datatype[] arrayRefVar;

Example:

double[] myList;

datatype arrayRefVar[]; // This style is allowed, but not preferred

Example:

double myList[];

Page 6: 06 Slide

6Liang, Introduction to Java Programming, Seventh Edition, (c) 2009 Pearson Education, Inc. All rights reserved. 0136012671

Creating Arrays

arrayRefVar = new datatype[arraySize];

Example:myList = new double[10];

myList[0] references the first element in the array.

myList[9] references the last element in the array.

Page 7: 06 Slide

7Liang, Introduction to Java Programming, Seventh Edition, (c) 2009 Pearson Education, Inc. All rights reserved. 0136012671

Declaring and Creatingin One Step

datatype[] arrayRefVar = new

datatype[arraySize];

double[] myList = new double[10];

datatype arrayRefVar[] = new datatype[arraySize];

double myList[] = new double[10];

Page 8: 06 Slide

8Liang, Introduction to Java Programming, Seventh Edition, (c) 2009 Pearson Education, Inc. All rights reserved. 0136012671

The Length of an Array

Once an array is created, its size is fixed. It cannot be changed. You can find its size using

arrayRefVar.length

For example,

myList.length returns 10

Page 9: 06 Slide

9Liang, Introduction to Java Programming, Seventh Edition, (c) 2009 Pearson Education, Inc. All rights reserved. 0136012671

Default Values

When an array is created, its elements are assigned the default value of

0 for the numeric primitive data types,

'\u0000' for char types, and

false for boolean types.

Page 10: 06 Slide

10Liang, Introduction to Java Programming, Seventh Edition, (c) 2009 Pearson Education, Inc. All rights reserved. 0136012671

Indexed VariablesThe array elements are accessed through the index. The array indices are 0-based, i.e., it starts from 0 to arrayRefVar.length-1. In the example in Figure 6.1, myList holds ten double values and the indices are from 0 to 9.

Each element in the array is represented using the following syntax, known as an indexed variable:

arrayRefVar[index];

Page 11: 06 Slide

11Liang, Introduction to Java Programming, Seventh Edition, (c) 2009 Pearson Education, Inc. All rights reserved. 0136012671

Using Indexed VariablesAfter an array is created, an indexed variable can be used in the same way as a regular variable. For example, the following code adds the value in myList[0] and myList[1] to myList[2].

myList[2] = myList[0] + myList[1];

Page 12: 06 Slide

12Liang, Introduction to Java Programming, Seventh Edition, (c) 2009 Pearson Education, Inc. All rights reserved. 0136012671

Array Initializers

Declaring, creating, initializing in one step:

double[] myList = {1.9, 2.9, 3.4, 3.5};

This shorthand syntax must be in one statement.

Page 13: 06 Slide

13Liang, Introduction to Java Programming, Seventh Edition, (c) 2009 Pearson Education, Inc. All rights reserved. 0136012671

Declaring, creating, initializing Using the Shorthand Notation

double[] myList = {1.9, 2.9, 3.4, 3.5};

This shorthand notation is equivalent to the following statements:

double[] myList = new double[4];

myList[0] = 1.9;

myList[1] = 2.9;

myList[2] = 3.4;

myList[3] = 3.5;

Page 14: 06 Slide

14Liang, Introduction to Java Programming, Seventh Edition, (c) 2009 Pearson Education, Inc. All rights reserved. 0136012671

CAUTIONUsing the shorthand notation, you have to declare, create, and initialize the array all in one statement. Splitting it would cause a syntax error. For example, the following is wrong:

double[] myList;

myList = {1.9, 2.9, 3.4, 3.5};

Page 15: 06 Slide

15Liang, Introduction to Java Programming, Seventh Edition, (c) 2009 Pearson Education, Inc. All rights reserved. 0136012671

Trace Program with Arrays

public class Test { public static void main(String[] args) { int[] values = new int[5]; for (int i = 1; i < 5; i++) { values[i] = values[i] + values[i-1]; } values[0] = values[1] + values[4]; }}

Declare array variable values, create an array, and assign its reference to values

After the array is created

0

1

2

3

4

0

0

0

0

0

animation

Page 16: 06 Slide

16Liang, Introduction to Java Programming, Seventh Edition, (c) 2009 Pearson Education, Inc. All rights reserved. 0136012671

Trace Program with Arrays

public class Test { public static void main(String[] args) { int[] values = new int[5]; for (int i = 1; i < 5; i++) { values[i] = values[i] + values[i-1]; } values[0] = values[1] + values[4]; }}

i becomes 1

After the array is created

0

1

2

3

4

0

0

0

0

0

animation

Page 17: 06 Slide

17Liang, Introduction to Java Programming, Seventh Edition, (c) 2009 Pearson Education, Inc. All rights reserved. 0136012671

Trace Program with Arrays

public class Test { public static void main(String[] args) { int[] values = new int[5]; for (int i = 1; i < 5; i++) { values[i] = values[i] + values[i-1]; } values[0] = values[1] + values[4]; }}

i (=1) is less than 5

After the array is created

0

1

2

3

4

0

0

0

0

0

animation

Page 18: 06 Slide

18Liang, Introduction to Java Programming, Seventh Edition, (c) 2009 Pearson Education, Inc. All rights reserved. 0136012671

Trace Program with Arrays

public class Test { public static void main(String[] args) { int[] values = new int[5]; for (int i = 1; i < 5; i++) { values[i] = i + values[i-1]; } values[0] = values[1] + values[4]; }}

After this line is executed, value[1] is 1

After the first iteration

0

1

2

3

4

0

1

0

0

0

animation

Page 19: 06 Slide

19Liang, Introduction to Java Programming, Seventh Edition, (c) 2009 Pearson Education, Inc. All rights reserved. 0136012671

Trace Program with Arrays

public class Test { public static void main(String[] args) { int[] values = new int[5]; for (int i = 1; i < 5; i++) { values[i] = values[i] + values[i-1]; } values[0] = values[1] + values[4]; }}

After i++, i becomes 2

animation

After the first iteration

0

1

2

3

4

0

1

0

0

0

Page 20: 06 Slide

20Liang, Introduction to Java Programming, Seventh Edition, (c) 2009 Pearson Education, Inc. All rights reserved. 0136012671

Trace Program with Arrays

public class Test { public static void main(String[] args) { int[] values = new int[5]; for (int i = 1; i < 5; i++) { values[i] = values[i] + values[i-1]; } values[0] = values[1] + values[4]; }}

i (= 2) is less than 5

animation

After the first iteration

0

1

2

3

4

0

1

0

0

0

Page 21: 06 Slide

21Liang, Introduction to Java Programming, Seventh Edition, (c) 2009 Pearson Education, Inc. All rights reserved. 0136012671

Trace Program with Arrays

public class Test { public static void main(String[] args) { int[] values = new int[5]; for (int i = 1; i < 5; i++) { values[i] = i + values[i-1]; } values[0] = values[1] + values[4]; }}

After this line is executed, values[2] is 3 (2 + 1)

After the second iteration

0

1

2

3

4

0

1

3

0

0

animation

Page 22: 06 Slide

22Liang, Introduction to Java Programming, Seventh Edition, (c) 2009 Pearson Education, Inc. All rights reserved. 0136012671

Trace Program with Arrays

public class Test { public static void main(String[] args) { int[] values = new int[5]; for (int i = 1; i < 5; i++) { values[i] = i + values[i-1]; } values[0] = values[1] + values[4]; }}

After this, i becomes 3.

After the second iteration

0

1

2

3

4

0

1

3

0

0

animation

Page 23: 06 Slide

23Liang, Introduction to Java Programming, Seventh Edition, (c) 2009 Pearson Education, Inc. All rights reserved. 0136012671

Trace Program with Arrays

public class Test { public static void main(String[] args) { int[] values = new int[5]; for (int i = 1; i < 5; i++) { values[i] = i + values[i-1]; } values[0] = values[1] + values[4]; }}

i (=3) is still less than 5.

After the second iteration

0

1

2

3

4

0

1

3

0

0

animation

Page 24: 06 Slide

24Liang, Introduction to Java Programming, Seventh Edition, (c) 2009 Pearson Education, Inc. All rights reserved. 0136012671

Trace Program with Arrays

public class Test { public static void main(String[] args) { int[] values = new int[5]; for (int i = 1; i < 5; i++) { values[i] = i + values[i-1]; } values[0] = values[1] + values[4]; }}

After this line, values[3] becomes 6 (3 + 3)

After the third iteration

0

1

2

3

4

0

1

3

6

0

animation

Page 25: 06 Slide

25Liang, Introduction to Java Programming, Seventh Edition, (c) 2009 Pearson Education, Inc. All rights reserved. 0136012671

Trace Program with Arrays

public class Test { public static void main(String[] args) { int[] values = new int[5]; for (int i = 1; i < 5; i++) { values[i] = i + values[i-1]; } values[0] = values[1] + values[4]; }}

After this, i becomes 4

After the third iteration

0

1

2

3

4

0

1

3

6

0

animation

Page 26: 06 Slide

26Liang, Introduction to Java Programming, Seventh Edition, (c) 2009 Pearson Education, Inc. All rights reserved. 0136012671

Trace Program with Arrays

public class Test { public static void main(String[] args) { int[] values = new int[5]; for (int i = 1; i < 5; i++) { values[i] = i + values[i-1]; } values[0] = values[1] + values[4]; }}

i (=4) is still less than 5

After the third iteration

0

1

2

3

4

0

1

3

6

0

animation

Page 27: 06 Slide

27Liang, Introduction to Java Programming, Seventh Edition, (c) 2009 Pearson Education, Inc. All rights reserved. 0136012671

Trace Program with Arrays

public class Test { public static void main(String[] args) { int[] values = new int[5]; for (int i = 1; i < 5; i++) { values[i] = i + values[i-1]; } values[0] = values[1] + values[4]; }}

After this, values[4] becomes 10 (4 + 6)

After the fourth iteration

0

1

2

3

4

0

1

3

6

10

animation

Page 28: 06 Slide

28Liang, Introduction to Java Programming, Seventh Edition, (c) 2009 Pearson Education, Inc. All rights reserved. 0136012671

Trace Program with Arrays

public class Test { public static void main(String[] args)

{ int[] values = new int[5]; for (int i = 1; i < 5; i++) { values[i] = i + values[i-1]; } values[0] = values[1] + values[4]; }}

After i++, i becomes 5

animation

After the fourth iteration

0

1

2

3

4

0

1

3

6

10

Page 29: 06 Slide

29Liang, Introduction to Java Programming, Seventh Edition, (c) 2009 Pearson Education, Inc. All rights reserved. 0136012671

Trace Program with Arrays

public class Test { public static void main(String[] args) { int[] values = new int[5]; for (int i = 1; i < 5; i++) { values[i] = i + values[i-1]; } values[0] = values[1] + values[4]; }}

i ( =5) < 5 is false. Exit the loop

animation

After the fourth iteration

0

1

2

3

4

0

1

3

6

10

Page 30: 06 Slide

30Liang, Introduction to Java Programming, Seventh Edition, (c) 2009 Pearson Education, Inc. All rights reserved. 0136012671

Trace Program with Arrays

public class Test { public static void main(String[] args) { int[] values = new int[5]; for (int i = 1; i < 5; i++) { values[i] = i + values[i-1]; } values[0] = values[1] + values[4]; }}

After this line, values[0] is 11 (1 + 10)

0

1

2

3

4

11

1

3

6

10

animation

Page 31: 06 Slide

31Liang, Introduction to Java Programming, Seventh Edition, (c) 2009 Pearson Education, Inc. All rights reserved. 0136012671

Processing Arrays

See the examples in the text.

1. (Initializing arrays)

2. (Printing arrays)

3. (Summing all elements)

4. (Finding the largest element)

5. (Finding the smallest index of the largest element)

6. (Random shuffling)

7. (Shifting elements)

Page 32: 06 Slide

32Liang, Introduction to Java Programming, Seventh Edition, (c) 2009 Pearson Education, Inc. All rights reserved. 0136012671

Enhanced for Loop (for-each loop)

JDK 1.5 introduced a new for loop that enables you to traverse the complete array sequentially without using an index variable. For example, the following code displays all elements in the array myList: 

for (double value: myList)

System.out.println(value);

 In general, the syntax is 

for (elementType value: arrayRefVar) {

// Process the value

}

 

You still have to use an index variable if you wish to traverse the array in a different order or change the elements in the array.

Page 33: 06 Slide

33Liang, Introduction to Java Programming, Seventh Edition, (c) 2009 Pearson Education, Inc. All rights reserved. 0136012671

Example: Analyzing Array Elements

Objective: The program receives 6 numbers from the user, finds the largest number and counts the occurrence of the largest number entered.

Suppose you entered 3, 5, 2, 5, 5, and 5, the largest number is 5 and its occurrence count is 4.

TestArrayTestArray RunRun

Page 34: 06 Slide

34Liang, Introduction to Java Programming, Seventh Edition, (c) 2009 Pearson Education, Inc. All rights reserved. 0136012671

Problem: Assigning Grades

Objective: read student scores (int), get the best score, and then assign grades based on the following scheme:– Grade is A if score is >= best–10;

– Grade is B if score is >= best–20;

– Grade is C if score is >= best–30;

– Grade is D if score is >= best–40;

– Grade is F otherwise.

AssignGradeAssignGrade

RunRun

Page 35: 06 Slide

35Liang, Introduction to Java Programming, Seventh Edition, (c) 2009 Pearson Education, Inc. All rights reserved. 0136012671

Copying ArraysOften, in a program, you need to duplicate an array or a part of an array. In such cases you could attempt to use the assignment statement (=), as follows: list2 = list1; 

Contents of list1

list1

Contents of list2

list2

Before the assignment list2 = list1;

Contents of list1

list1

Contents of list2

list2

After the assignment list2 = list1;

Garbage

Page 36: 06 Slide

36Liang, Introduction to Java Programming, Seventh Edition, (c) 2009 Pearson Education, Inc. All rights reserved. 0136012671

Copying Arrays

Using a loop:

int[] sourceArray = {2, 3, 1, 5, 10};

int[] targetArray = new int[sourceArray.length];

for (int i = 0; i < sourceArrays.length; i++)

targetArray[i] = sourceArray[i];

Page 37: 06 Slide

37Liang, Introduction to Java Programming, Seventh Edition, (c) 2009 Pearson Education, Inc. All rights reserved. 0136012671

The arraycopy Utility

arraycopy(sourceArray, src_pos, targetArray, tar_pos, length);

Example:System.arraycopy(sourceArray, 0, targetArray, 0, sourceArray.length);

Page 38: 06 Slide

38Liang, Introduction to Java Programming, Seventh Edition, (c) 2009 Pearson Education, Inc. All rights reserved. 0136012671

Passing Arrays to Methodspublic static void printArray(int[] array) { for (int i = 0; i < array.length; i++) { System.out.print(array[i] + " "); }}

Invoke the method

int[] list = {3, 1, 2, 6, 4, 2};printArray(list);

Invoke the methodprintArray(new int[]{3, 1, 2, 6, 4, 2});

Anonymous array

Page 39: 06 Slide

39Liang, Introduction to Java Programming, Seventh Edition, (c) 2009 Pearson Education, Inc. All rights reserved. 0136012671

Anonymous ArrayThe statement

printArray(new int[]{3, 1, 2, 6, 4, 2});

creates an array using the following syntax:

new dataType[]{literal0, literal1, ..., literalk};

There is no explicit reference variable for the array. Such array is called an anonymous array.

Page 40: 06 Slide

40Liang, Introduction to Java Programming, Seventh Edition, (c) 2009 Pearson Education, Inc. All rights reserved. 0136012671

Pass By ValueJava uses pass by value to pass arguments to a method. There are important differences between passing a value of variables of primitive data types and passing arrays.

For a parameter of a primitive type value, the actual value is passed. Changing the value of the local parameter inside the method does not affect the value of the variable outside the method.

For a parameter of an array type, the value of the parameter contains a reference to an array; this reference is passed to the method. Any changes to the array that occur inside the method body will affect the original array that was passed as the argument.

Page 41: 06 Slide

41Liang, Introduction to Java Programming, Seventh Edition, (c) 2009 Pearson Education, Inc. All rights reserved. 0136012671

public class Test {

public static void main(String[] args) {

int x = 1; // x represents an int value

int[] y = new int[10]; // y represents an array of int values

 

m(x, y); // Invoke m with arguments x and y

 

System.out.println("x is " + x);

System.out.println("y[0] is " + y[0]);

}

 

public static void m(int number, int[] numbers) {

number = 1001; // Assign a new value to number

numbers[0] = 5555; // Assign a new value to numbers[0]

}

}

Simple Example

Page 42: 06 Slide

42Liang, Introduction to Java Programming, Seventh Edition, (c) 2009 Pearson Education, Inc. All rights reserved. 0136012671

Call Stack

When invoking m(x, y), the values of x and y are passed to number and numbers. Since y contains the reference value to the array, numbers now contains the same reference value to the same array.

Space required for the main method int[] y: int x: 1

Stack Space required for method m int[] numbers: int number: 1

reference

0 0 0

The arrays are stored in a heap.

Heap

reference

Array of ten int values is

Page 43: 06 Slide

43Liang, Introduction to Java Programming, Seventh Edition, (c) 2009 Pearson Education, Inc. All rights reserved. 0136012671

Call Stack

When invoking m(x, y), the values of x and y are passed to number and numbers. Since y contains the reference value to the array, numbers now contains the same reference value to the same array.

Space required for the main method int[] y: int x: 1

Stack Space required for method m int[] numbers: int number: 1

reference

5555 0 0

The arrays are stored in a heap.

Heap

reference

Array of ten int values is stored here

Page 44: 06 Slide

44Liang, Introduction to Java Programming, Seventh Edition, (c) 2009 Pearson Education, Inc. All rights reserved. 0136012671

Heap

Space required for the main method int[] y: int x: 1

Stack Space required for xMethod int[] numbers: int number: 1

reference

Array of ten int values are stored here

The arrays are stored in a heap.

Heap

reference

The JVM stores the array in an area of memory, called heap, which is used for dynamic memory allocation where blocks of memory are allocated and freed in an arbitrary order.

Page 45: 06 Slide

45Liang, Introduction to Java Programming, Seventh Edition, (c) 2009 Pearson Education, Inc. All rights reserved. 0136012671

Passing Arrays as Arguments

Objective: Demonstrate differences of passing primitive data type variables and array variables.

TestPassArrayTestPassArray RunRun

Page 46: 06 Slide

46Liang, Introduction to Java Programming, Seventh Edition, (c) 2009 Pearson Education, Inc. All rights reserved. 0136012671

Example, cont.

Invoke swap(int n1, int n2). The primitive type values in a[0] and a[1] are passed to the swap method.

Space required for the main method int[] a

Stack Space required for the swap method

n2: 2 n1: 1

reference a[1]: 2 a[0]: 1

The arrays are stored in a heap.

Invoke swapFirstTwoInArray(int[] array). The reference value in a is passed to the swapFirstTwoInArray method.

Heap

Space required for the main method int[] a

Stack Space required for the swapFirstTwoInArray method int[] array

reference

reference

Page 47: 06 Slide

47Liang, Introduction to Java Programming, Seventh Edition, (c) 2009 Pearson Education, Inc. All rights reserved. 0136012671

Returning an Array from a Methodpublic static int[] reverse(int[] list) { int[] result = new int[list.length];  for (int i = 0, j = result.length - 1; i < list.length; i++, j--) { result[j] = list[i]; }  return result;}

int[] list1 = new int[]{1, 2, 3, 4, 5, 6};int[] list2 = reverse(list1);

list

result

Page 48: 06 Slide

48Liang, Introduction to Java Programming, Seventh Edition, (c) 2009 Pearson Education, Inc. All rights reserved. 0136012671

Trace the reverse Method

public static int[] reverse(int[] list) { int[] result = new int[list.length];  for (int i = 0, j = result.length - 1; i < list.length; i++, j--) { result[j] = list[i]; }  return result;}

int[] list1 = new int[]{1, 2, 3, 4, 5, 6};int[] list2 = reverse(list1);

list

result

1 2 3 4 5 6

0 0 0 0 0 0

Declare result and create array

animation

Page 49: 06 Slide

49Liang, Introduction to Java Programming, Seventh Edition, (c) 2009 Pearson Education, Inc. All rights reserved. 0136012671

Trace the reverse Method, cont.

public static int[] reverse(int[] list) { int[] result = new int[list.length];  for (int i = 0, j = result.length - 1; i < list.length; i++, j--) { result[j] = list[i]; }  return result;}

int[] list1 = new int[]{1, 2, 3, 4, 5, 6};int[] list2 = reverse(list1);

list

result

1 2 3 4 5 6

0 0 0 0 0 0

i = 0 and j = 5

animation

Page 50: 06 Slide

50Liang, Introduction to Java Programming, Seventh Edition, (c) 2009 Pearson Education, Inc. All rights reserved. 0136012671

Trace the reverse Method, cont.

public static int[] reverse(int[] list) { int[] result = new int[list.length];  for (int i = 0, j = result.length - 1; i < list.length; i++, j--) { result[j] = list[i]; }  return result;}

int[] list1 = new int[]{1, 2, 3, 4, 5, 6};int[] list2 = reverse(list1);

list

result

1 2 3 4 5 6

0 0 0 0 0 0

i (= 0) is less than 6

animation

Page 51: 06 Slide

51Liang, Introduction to Java Programming, Seventh Edition, (c) 2009 Pearson Education, Inc. All rights reserved. 0136012671

Trace the reverse Method, cont.

public static int[] reverse(int[] list) { int[] result = new int[list.length];  for (int i = 0, j = result.length - 1; i < list.length; i++, j--) { result[j] = list[i]; }  return result;}

int[] list1 = new int[]{1, 2, 3, 4, 5, 6};int[] list2 = reverse(list1);

list

result

1 2 3 4 5 6

0 0 0 0 0 1

i = 0 and j = 5 Assign list[0] to result[5]

animation

Page 52: 06 Slide

52Liang, Introduction to Java Programming, Seventh Edition, (c) 2009 Pearson Education, Inc. All rights reserved. 0136012671

Trace the reverse Method, cont.

public static int[] reverse(int[] list) { int[] result = new int[list.length];  for (int i = 0, j = result.length - 1; i < list.length; i++, j--) { result[j] = list[i]; }  return result;}

int[] list1 = new int[]{1, 2, 3, 4, 5, 6};int[] list2 = reverse(list1);

list

result

1 2 3 4 5 6

0 0 0 0 0 1

After this, i becomes 1 and j becomes 4

animation

Page 53: 06 Slide

53Liang, Introduction to Java Programming, Seventh Edition, (c) 2009 Pearson Education, Inc. All rights reserved. 0136012671

Trace the reverse Method, cont.

public static int[] reverse(int[] list) { int[] result = new int[list.length];  for (int i = 0, j = result.length - 1; i < list.length; i++, j--) { result[j] = list[i]; }  return result;}

int[] list1 = new int[]{1, 2, 3, 4, 5, 6};int[] list2 = reverse(list1);

list

result

1 2 3 4 5 6

0 0 0 0 0 1

i (=1) is less than 6

animation

Page 54: 06 Slide

54Liang, Introduction to Java Programming, Seventh Edition, (c) 2009 Pearson Education, Inc. All rights reserved. 0136012671

Trace the reverse Method, cont.

public static int[] reverse(int[] list) { int[] result = new int[list.length];  for (int i = 0, j = result.length - 1; i < list.length; i++, j--) { result[j] = list[i]; }  return result;}

int[] list1 = new int[]{1, 2, 3, 4, 5, 6};int[] list2 = reverse(list1);

list

result

1 2 3 4 5 6

0 0 0 0 2 1

i = 1 and j = 4 Assign list[1] to result[4]

animation

Page 55: 06 Slide

55Liang, Introduction to Java Programming, Seventh Edition, (c) 2009 Pearson Education, Inc. All rights reserved. 0136012671

Trace the reverse Method, cont.

public static int[] reverse(int[] list) { int[] result = new int[list.length];  for (int i = 0, j = result.length - 1; i < list.length; i++, j--) { result[j] = list[i]; }  return result;}

int[] list1 = new int[]{1, 2, 3, 4, 5, 6};int[] list2 = reverse(list1);

list

result

1 2 3 4 5 6

0 0 0 0 2 1

After this, i becomes 2 and j becomes 3

animation

Page 56: 06 Slide

56Liang, Introduction to Java Programming, Seventh Edition, (c) 2009 Pearson Education, Inc. All rights reserved. 0136012671

Trace the reverse Method, cont.

public static int[] reverse(int[] list) { int[] result = new int[list.length];  for (int i = 0, j = result.length - 1; i < list.length; i++, j--) { result[j] = list[i]; }  return result;}

int[] list1 = new int[]{1, 2, 3, 4, 5, 6};int[] list2 = reverse(list1);

list

result

1 2 3 4 5 6

0 0 0 0 2 1

i (=2) is still less than 6

animation

Page 57: 06 Slide

57Liang, Introduction to Java Programming, Seventh Edition, (c) 2009 Pearson Education, Inc. All rights reserved. 0136012671

Trace the reverse Method, cont.

public static int[] reverse(int[] list) { int[] result = new int[list.length];  for (int i = 0, j = result.length - 1; i < list.length; i++, j--) { result[j] = list[i]; }  return result;}

int[] list1 = new int[]{1, 2, 3, 4, 5, 6};int[] list2 = reverse(list1);

list

result

1 2 3 4 5 6

0 0 0 3 2 1

i = 2 and j = 3 Assign list[i] to result[j]

animation

Page 58: 06 Slide

58Liang, Introduction to Java Programming, Seventh Edition, (c) 2009 Pearson Education, Inc. All rights reserved. 0136012671

Trace the reverse Method, cont.

public static int[] reverse(int[] list) { int[] result = new int[list.length];  for (int i = 0, j = result.length - 1; i < list.length; i++, j--) { result[j] = list[i]; }  return result;}

int[] list1 = new int[]{1, 2, 3, 4, 5, 6};int[] list2 = reverse(list1);

list

result

1 2 3 4 5 6

0 0 0 3 2 1

After this, i becomes 3 and j becomes 2

animation

Page 59: 06 Slide

59Liang, Introduction to Java Programming, Seventh Edition, (c) 2009 Pearson Education, Inc. All rights reserved. 0136012671

Trace the reverse Method, cont.

public static int[] reverse(int[] list) { int[] result = new int[list.length];  for (int i = 0, j = result.length - 1; i < list.length; i++, j--) { result[j] = list[i]; }  return result;}

int[] list1 = new int[]{1, 2, 3, 4, 5, 6};int[] list2 = reverse(list1);

list

result

1 2 3 4 5 6

0 0 0 3 2 1

i (=3) is still less than 6

animation

Page 60: 06 Slide

60Liang, Introduction to Java Programming, Seventh Edition, (c) 2009 Pearson Education, Inc. All rights reserved. 0136012671

Trace the reverse Method, cont.

public static int[] reverse(int[] list) { int[] result = new int[list.length];  for (int i = 0, j = result.length - 1; i < list.length; i++, j--) { result[j] = list[i]; }  return result;}

int[] list1 = new int[]{1, 2, 3, 4, 5, 6};int[] list2 = reverse(list1);

list

result

1 2 3 4 5 6

0 0 4 3 2 1

i = 3 and j = 2 Assign list[i] to result[j]

animation

Page 61: 06 Slide

61Liang, Introduction to Java Programming, Seventh Edition, (c) 2009 Pearson Education, Inc. All rights reserved. 0136012671

Trace the reverse Method, cont.

public static int[] reverse(int[] list) { int[] result = new int[list.length];  for (int i = 0, j = result.length - 1; i < list.length; i++, j--) { result[j] = list[i]; }  return result;}

int[] list1 = new int[]{1, 2, 3, 4, 5, 6};int[] list2 = reverse(list1);

list

result

1 2 3 4 5 6

0 0 4 3 2 1

After this, i becomes 4 and j becomes 1

animation

Page 62: 06 Slide

62Liang, Introduction to Java Programming, Seventh Edition, (c) 2009 Pearson Education, Inc. All rights reserved. 0136012671

Trace the reverse Method, cont.

public static int[] reverse(int[] list) { int[] result = new int[list.length];  for (int i = 0, j = result.length - 1; i < list.length; i++, j--) { result[j] = list[i]; }  return result;}

int[] list1 = new int[]{1, 2, 3, 4, 5, 6};int[] list2 = reverse(list1);

list

result

1 2 3 4 5 6

0 0 4 3 2 1

i (=4) is still less than 6

animation

Page 63: 06 Slide

63Liang, Introduction to Java Programming, Seventh Edition, (c) 2009 Pearson Education, Inc. All rights reserved. 0136012671

Trace the reverse Method, cont.

public static int[] reverse(int[] list) { int[] result = new int[list.length];  for (int i = 0, j = result.length - 1; i < list.length; i++, j--) { result[j] = list[i]; }  return result;}

int[] list1 = new int[]{1, 2, 3, 4, 5, 6};int[] list2 = reverse(list1);

list

result

1 2 3 4 5 6

0 5 4 3 2 1

i = 4 and j = 1 Assign list[i] to result[j]

animation

Page 64: 06 Slide

64Liang, Introduction to Java Programming, Seventh Edition, (c) 2009 Pearson Education, Inc. All rights reserved. 0136012671

Trace the reverse Method, cont.

public static int[] reverse(int[] list) { int[] result = new int[list.length];  for (int i = 0, j = result.length - 1; i < list.length; i++, j--) { result[j] = list[i]; }  return result;}

int[] list1 = new int[]{1, 2, 3, 4, 5, 6};int[] list2 = reverse(list1);

list

result

1 2 3 4 5 6

0 5 4 3 2 1

After this, i becomes 5 and j becomes 0

animation

Page 65: 06 Slide

65Liang, Introduction to Java Programming, Seventh Edition, (c) 2009 Pearson Education, Inc. All rights reserved. 0136012671

Trace the reverse Method, cont.

public static int[] reverse(int[] list) { int[] result = new int[list.length];  for (int i = 0, j = result.length - 1; i < list.length; i++, j--) { result[j] = list[i]; }  return result;}

int[] list1 = new int[]{1, 2, 3, 4, 5, 6};int[] list2 = reverse(list1);

list

result

1 2 3 4 5 6

0 5 4 3 2 1

i (=5) is still less than 6

animation

Page 66: 06 Slide

66Liang, Introduction to Java Programming, Seventh Edition, (c) 2009 Pearson Education, Inc. All rights reserved. 0136012671

Trace the reverse Method, cont.

public static int[] reverse(int[] list) { int[] result = new int[list.length];  for (int i = 0, j = result.length - 1; i < list.length; i++, j--) { result[j] = list[i]; }  return result;}

int[] list1 = new int[]{1, 2, 3, 4, 5, 6};int[] list2 = reverse(list1);

list

result

1 2 3 4 5 6

6 5 4 3 2 1

i = 5 and j = 0 Assign list[i] to result[j]

animation

Page 67: 06 Slide

67Liang, Introduction to Java Programming, Seventh Edition, (c) 2009 Pearson Education, Inc. All rights reserved. 0136012671

Trace the reverse Method, cont.

public static int[] reverse(int[] list) { int[] result = new int[list.length];  for (int i = 0, j = result.length - 1; i < list.length; i++, j--) { result[j] = list[i]; }  return result;}

int[] list1 = new int[]{1, 2, 3, 4, 5, 6};int[] list2 = reverse(list1);

list

result

1 2 3 4 5 6

6 5 4 3 2 1

After this, i becomes 6 and j becomes -1

animation

Page 68: 06 Slide

68Liang, Introduction to Java Programming, Seventh Edition, (c) 2009 Pearson Education, Inc. All rights reserved. 0136012671

Trace the reverse Method, cont.

public static int[] reverse(int[] list) { int[] result = new int[list.length];  for (int i = 0, j = result.length - 1; i < list.length; i++, j--) { result[j] = list[i]; }  return result;}

int[] list1 = new int[]{1, 2, 3, 4, 5, 6};int[] list2 = reverse(list1);

list

result

1 2 3 4 5 6

6 5 4 3 2 1

i (=6) < 6 is false. So exit the loop.

animation

Page 69: 06 Slide

69Liang, Introduction to Java Programming, Seventh Edition, (c) 2009 Pearson Education, Inc. All rights reserved. 0136012671

Trace the reverse Method, cont.

public static int[] reverse(int[] list) { int[] result = new int[list.length];  for (int i = 0, j = result.length - 1; i < list.length; i++, j--) { result[j] = list[i]; }  return result;}

int[] list1 = new int[]{1, 2, 3, 4, 5, 6};int[] list2 = reverse(list1);

list

result

1 2 3 4 5 6

6 5 4 3 2 1

Return result

list2

animation

Page 70: 06 Slide

70Liang, Introduction to Java Programming, Seventh Edition, (c) 2009 Pearson Education, Inc. All rights reserved. 0136012671

Problem: Counting Occurrence of Each Letter

Generate 100 lowercase letters randomly and assign to an array of characters.

Count the occurrence of each letter in the array.

CountLettersInArrayCountLettersInArray RunRun

(a) Executing createArray in Line 6

Space required for the main method

char[] chars: ref

Heap

Array of 100 characters

Space required for the createArray method

char[] chars: ref

(b) After exiting createArray in Line 6

Space required for the main method

char[] chars: ref

Heap

Array of 100 characters

Stack Stack

Page 71: 06 Slide

71Liang, Introduction to Java Programming, Seventh Edition, (c) 2009 Pearson Education, Inc. All rights reserved. 0136012671

Searching Arrays

public class LinearSearch { /** The method for finding a key in the list */ public static int linearSearch(int[] list, int key) { for (int i = 0; i < list.length; i++) if (key == list[i]) return i; return -1; } }

list

key Compare key with list[i] for i = 0, 1, …

[0] [1] [2] …

Searching is the process of looking for a specific element in an array; for example, discovering whether a certain score is included in a list of scores. Searching is a common task in computer programming. There are many algorithms and data structures devoted to searching. In this section, two commonly used approaches are discussed, linear search and binary search.

Page 72: 06 Slide

72Liang, Introduction to Java Programming, Seventh Edition, (c) 2009 Pearson Education, Inc. All rights reserved. 0136012671

Linear Search

The linear search approach compares the key element, key, sequentially with each element in the array list. The method continues to do so until the key matches an element in the list or the list is exhausted without a match being found. If a match is made, the linear search returns the index of the element in the array that matches the key. If no match is found, the search returns -1.

Page 73: 06 Slide

73Liang, Introduction to Java Programming, Seventh Edition, (c) 2009 Pearson Education, Inc. All rights reserved. 0136012671

Linear Search Animation

6 4 1 9 7 3 2 8

6 4 1 9 7 3 2 8

6 4 1 9 7 3 2 8

6 4 1 9 7 3 2 8

6 4 1 9 7 3 2 8

6 4 1 9 7 3 2 8

3

3

3

3

3

3

animation

Key List

Page 74: 06 Slide

74Liang, Introduction to Java Programming, Seventh Edition, (c) 2009 Pearson Education, Inc. All rights reserved. 0136012671

From Idea to Solution/** The method for finding a key in the list */

public static int linearSearch(int[] list, int key) {

for (int i = 0; i < list.length; i++)

if (key == list[i])

return i;

return -1;

}

int[] list = {1, 4, 4, 2, 5, -3, 6, 2};

int i = linearSearch(list, 4); // returns 1

int j = linearSearch(list, -4); // returns -1

int k = linearSearch(list, -3); // returns 5

Trace the method

Page 75: 06 Slide

75Liang, Introduction to Java Programming, Seventh Edition, (c) 2009 Pearson Education, Inc. All rights reserved. 0136012671

Linear Search Applet

An applet was developed by a student to visualize the steps for linear search

LinearSearchLinearSearch

Linear Search AppletLinear Search Applet

Linear Search source code

Page 76: 06 Slide

76Liang, Introduction to Java Programming, Seventh Edition, (c) 2009 Pearson Education, Inc. All rights reserved. 0136012671

Binary Search

For binary search to work, the elements in the array must already be ordered. Without loss of generality, assume that the array is in ascending order.

e.g., 2 4 7 10 11 45 50 59 60 66 69 70 79

The binary search first compares the key with the element in the middle of the array.

Page 77: 06 Slide

77Liang, Introduction to Java Programming, Seventh Edition, (c) 2009 Pearson Education, Inc. All rights reserved. 0136012671

Binary Search, cont.

If the key is less than the middle element, you only need to search the key in the first half of the array.

If the key is equal to the middle element, the search ends with a match.

If the key is greater than the middle element, you only need to search the key in the second half of the array.

Consider the following three cases:

Page 78: 06 Slide

78Liang, Introduction to Java Programming, Seventh Edition, (c) 2009 Pearson Education, Inc. All rights reserved. 0136012671

Binary Search

1 2 3 4 6 7 8 9

1 2 3 4 6 7 8 9

1 2 3 4 6 7 8 9

8

8

8

Key List

animation

Page 79: 06 Slide

79Liang, Introduction to Java Programming, Seventh Edition, (c) 2009 Pearson Education, Inc. All rights reserved. 0136012671

Binary Search, cont.

[0] [1] [2] [3] [4] [5] [6] [7] [8] [9] [10] [11] [12]

2 4 7 10 11 45 50 59 60 66 69 70 79

key is 11

key < 50

list

mid

[0] [1] [2] [3] [4] [5] key > 7

key == 11

high low

mid high low

list

[3] [4] [5]

mid high low

list

2 4 7 10 11 45

10 11 45

Page 80: 06 Slide

80Liang, Introduction to Java Programming, Seventh Edition, (c) 2009 Pearson Education, Inc. All rights reserved. 0136012671

Binary Search, cont.

[0] [1] [2] [3] [4] [5] [6] [7] [8] [9] [10] [11] [12]

2 4 7 10 11 45 50 59 60 66 69 70 79

key is 54

key > 50

list

mid

[0] [1] [2] [3] [4] [5] [6] [7] [8] [9] [10] [11] [12] key < 66

key < 59

high low

mid high low

list

[7] [8]

mid high low

list

59 60 66 69 70 79

59 60

[6] [7] [8]

high low

59 60

Page 81: 06 Slide

81Liang, Introduction to Java Programming, Seventh Edition, (c) 2009 Pearson Education, Inc. All rights reserved. 0136012671

Binary Search, cont.The binarySearch method returns the index of the element in the list that matches the search key if it is contained in the list. Otherwise, it returns

-insertion point - 1.

The insertion point is the point at which the key

would be inserted into the list.

Page 82: 06 Slide

82Liang, Introduction to Java Programming, Seventh Edition, (c) 2009 Pearson Education, Inc. All rights reserved. 0136012671

From Idea to Soluton/** Use binary search to find the key in the list */public static int binarySearch(int[] list, int key) { int low = 0; int high = list.length - 1;  while (high >= low) { int mid = (low + high) / 2; if (key < list[mid]) high = mid - 1; else if (key == list[mid]) return mid; else low = mid + 1; }  return -1 - low;}

Page 83: 06 Slide

83Liang, Introduction to Java Programming, Seventh Edition, (c) 2009 Pearson Education, Inc. All rights reserved. 0136012671

Binary Search Applet

An applet was developed by a student to visualize the steps for binary search

BinarySearchBinarySearch

Binary Search AppletBinary Search Applet

Binary Search source code

Page 84: 06 Slide

84Liang, Introduction to Java Programming, Seventh Edition, (c) 2009 Pearson Education, Inc. All rights reserved. 0136012671

The Arrays.binarySearch MethodSince binary search is frequently used in programming, Java provides several overloaded binarySearch methods for searching a key in an array of int, double, char, short, long, and float in the java.util.Arrays class. For example, the following code searches the keys in an array of numbers and an array of characters.

int[] list = {2, 4, 7, 10, 11, 45, 50, 59, 60, 66, 69, 70, 79};System.out.println("Index is " + java.util.Arrays.binarySearch(list, 11)); char[] chars = {'a', 'c', 'g', 'x', 'y', 'z'};System.out.println("Index is " + java.util.Arrays.binarySearch(chars, 't'));

 For the binarySearch method to work, the array must be pre-sorted in increasing order.

Return is 4

Return is –4 (insertion point is 3, so return is -3-1)

Page 85: 06 Slide

85Liang, Introduction to Java Programming, Seventh Edition, (c) 2009 Pearson Education, Inc. All rights reserved. 0136012671

Sorting Arrays

Sorting, like searching, is also a common task in computer programming. It would be used, for instance, if you wanted to display the grades from Listing 6.2, “Assigning Grades,” in alphabetical order. Many different algorithms have been developed for sorting. This section introduces two simple, intuitive sorting algorithms: selection sort and insertion sort.

Page 86: 06 Slide

86Liang, Introduction to Java Programming, Seventh Edition, (c) 2009 Pearson Education, Inc. All rights reserved. 0136012671

Selection sort finds the largest number in the list and places it last. It then finds the largest number remaining and places it next to last, and so on until the list contains only a single number. Figure 6.17 shows how to sort the list {2, 9, 5, 4, 8, 1, 6} using selection sort.

Selection Sort

2 9 5 4 8 1 6

swap

Select 9 (the largest) and swap it with 6 (the last) in the list

2 6 5 4 8 1 9

swap

The number 9 is now in the correct position and thus no longer needs to be considered.

2 6 5 4 1 8 9

swap

2 1 5 4 6 8 9

swap

Select 8 (the largest) and swap it with 1 (the last) in the remaining list

The number 8 is now in the correct position and thus no longer needs to be considered.

Select 6 (the largest) and swap it with 1 (the last) in the remaining list

The number 6 is now in the correct position and thus no longer needs to be considered.

2 1 4 5 6 8 9

4 is the largest and last in the list. No swap is necessary

2 1 4 5 6 8 9

swap

The number 4 is now in the correct position and thus no longer needs to be considered.

1 2 4 5 6 8 9

Select 2 (the largest) and swap it with 1 (the last) in the remaining list

The number 2 is now in the correct position and thus no longer needs to be considered.

Since there is only one number remaining in the list, sort is completed

Select 5 (the largest) and swap it with 4 (the last) in the remaining list

The number 5 is now in the correct position and thus no longer needs to be considered.

Page 87: 06 Slide

87Liang, Introduction to Java Programming, Seventh Edition, (c) 2009 Pearson Education, Inc. All rights reserved. 0136012671

Selection Sort

2 9 5 4 8 1 6

2 6 5 4 8 1 9

2 6 5 4 1 8 9

2 1 4 5 6 8 9

2 1 4 5 6 8 9

2 1 5 4 6 8 9

1 2 4 5 6 8 9

animation

int[] myList = {2, 9, 5, 4, 8, 1, 6}; // Unsorted

Page 88: 06 Slide

88Liang, Introduction to Java Programming, Seventh Edition, (c) 2009 Pearson Education, Inc. All rights reserved. 0136012671

From Idea to Solutionfor (int i = list.length - 1; i >= 1; i--) { select the largest element in list[0..i]; swap the largest with list[i], if necessary; // list[i] is in place. The next iteration applies on list[0..i-1]}

list[0] list[1] list[2] list[3] ... list[10]

list[0] list[1] list[2] list[3] ... list[9]

list[0] list[1] list[2] list[3] ... list[8]

list[0] list[1] list[2] list[3] ... list[7]

list[0]

...

Page 89: 06 Slide

89Liang, Introduction to Java Programming, Seventh Edition, (c) 2009 Pearson Education, Inc. All rights reserved. 0136012671

Expand

for (int i = list.length - 1; i >= 1; i--) { select the largest element in list[0..i]; swap the largest with list[i], if necessary; // list[i] is in place. The next iteration applies on list[0..i-1]}

// Find the maximum in the list[0..i] double currentMax = list[0]; int currentMaxIndex = 0;  for (int j = 1; j <= i; j++) { if (currentMax < list[j]) { currentMax = list[j]; currentMaxIndex = j; } }

Page 90: 06 Slide

90Liang, Introduction to Java Programming, Seventh Edition, (c) 2009 Pearson Education, Inc. All rights reserved. 0136012671

Expand

for (int i = list.length - 1; i >= 1; i--) { select the largest element in list[0..i]; swap the largest with list[i], if necessary; // list[i] is in place. The next iteration applies on list[0..i-1]}

// Find the maximum in the list[0..i] double currentMax = list[0]; int currentMaxIndex = 0;  for (int j = 1; j <= i; j++) { if (currentMax < list[j]) { currentMax = list[j]; currentMaxIndex = j; } }

Page 91: 06 Slide

91Liang, Introduction to Java Programming, Seventh Edition, (c) 2009 Pearson Education, Inc. All rights reserved. 0136012671

Expand

for (int i = list.length - 1; i >= 1; i--) { select the largest element in list[0..i]; swap the largest with list[i], if necessary; // list[i] is in place. The next iteration applies on list[0..i-1]}

// Swap list[i] with list[currentMaxIndex] if necessary;if (currentMaxIndex != i) { list[currentMaxIndex] = list[i]; list[i] = currentMax;}

Page 92: 06 Slide

92Liang, Introduction to Java Programming, Seventh Edition, (c) 2009 Pearson Education, Inc. All rights reserved. 0136012671

Wrap it in a Method/** The method for sorting the numbers */public static void selectionSort(double[] list) { for (int i = list.length - 1; i >= 1; i--) { // Find the maximum in the list[0..i] double currentMax = list[0]; int currentMaxIndex = 0;  for (int j = 1; j <= i; j++) { if (currentMax < list[j]) { currentMax = list[j]; currentMaxIndex = j; } }  // Swap list[i] with list[currentMaxIndex] if necessary; if (currentMaxIndex != i) { list[currentMaxIndex] = list[i]; list[i] = currentMax; } }}

Invoke it

selectionSort(yourList)

Page 93: 06 Slide

93Liang, Introduction to Java Programming, Seventh Edition, (c) 2009 Pearson Education, Inc. All rights reserved. 0136012671

Selection Sort Applet

An applet was developed by a student to visualize the steps for selection sort

SelectionSortSelectionSort

Selection Sort AppletSelection Sort Applet

Selection Sort source code

Page 94: 06 Slide

94Liang, Introduction to Java Programming, Seventh Edition, (c) 2009 Pearson Education, Inc. All rights reserved. 0136012671

Insertion Sortint[] myList = {2, 9, 5, 4, 8, 1, 6}; // Unsorted

The insertion sort algorithm sorts a list of values by repeatedly inserting an unsorted element into a sorted sublist until the whole list is sorted.

2 9 5 4 8 1 6

Step 1: Initially, the sorted sublist contains the first element in the list. Insert 9 to the sublist.

2 9 5 4 8 1 6

Step2: The sorted sublist is {2, 9}. Insert 5 to the sublist.

2 5 9 4 8 1 6

Step 3: The sorted sublist is {2, 5, 9}. Insert 4 to the sublist.

2 4 5 9 8 1 6

Step 4: The sorted sublist is {2, 4, 5, 9}. Insert 8 to the sublist.

2 4 5 8 9 1 6

Step 5: The sorted sublist is {2, 4, 5, 8, 9}. Insert 1 to the sublist.

1 2 4 5 8 9 6

Step 6: The sorted sublist is {1, 2, 4, 5, 8, 9}. Insert 6 to the sublist.

1 2 4 5 6 8 9

Step 7: The entire list is now sorted

Page 95: 06 Slide

95Liang, Introduction to Java Programming, Seventh Edition, (c) 2009 Pearson Education, Inc. All rights reserved. 0136012671

Insertion Sort

2 9 5 4 8 1 62 9 5 4 8 1 6

2 5 9 4 8 1 6

2 4 5 8 9 1 61 2 4 5 8 9 6

2 4 5 9 8 1 6

1 2 4 5 6 8 9

int[] myList = {2, 9, 5, 4, 8, 1, 6}; // Unsorted

animation

Page 96: 06 Slide

96Liang, Introduction to Java Programming, Seventh Edition, (c) 2009 Pearson Education, Inc. All rights reserved. 0136012671

How to Insert?

The insertion sort algorithm sorts a list of values by repeatedly inserting an unsorted element into a sorted sublist until the whole list is sorted.

[0] [1] [2] [3] [4] [5] [6]

2 5 9 4 list Step 1: Save 4 to a temporary variable currentElement

[0] [1] [2] [3] [4] [5] [6]

2 5 9 list Step 2: Move list[2] to list[3]

[0] [1] [2] [3] [4] [5] [6]

2 5 9 list Step 3: Move list[1] to list[2]

[0] [1] [2] [3] [4] [5] [6]

2 4 5 9 list Step 4: Assign currentElement to list[1]

Page 97: 06 Slide

97Liang, Introduction to Java Programming, Seventh Edition, (c) 2009 Pearson Education, Inc. All rights reserved. 0136012671

From Idea to Solutionfor (int i = 1; 1; i < list,length; i++) { insert list[i] into a sorted sublist list[0..i-1] so that list[0..i] is sorted}

list[0]

list[0] list[1]

list[0] list[1] list[2]

list[0] list[1] list[2] list[3]

list[0] list[1] list[2] list[3] ...

InsertSortInsertSort

Page 98: 06 Slide

98Liang, Introduction to Java Programming, Seventh Edition, (c) 2009 Pearson Education, Inc. All rights reserved. 0136012671

The Arrays.sort MethodSince sorting is frequently used in programming, Java provides several overloaded sort methods for sorting an array of int, double, char, short, long, and float in the java.util.Arrays class. For example, the following code sorts an array of numbers and an array of characters.

double[] numbers = {6.0, 4.4, 1.9, 2.9, 3.4, 3.5};java.util.Arrays.sort(numbers);

 char[] chars = {'a', 'A', '4', 'F', 'D', 'P'};java.util.Arrays.sort(chars);

Page 99: 06 Slide

99Liang, Introduction to Java Programming, Seventh Edition, (c) 2009 Pearson Education, Inc. All rights reserved. 0136012671

Two-dimensional Arrays

Chicago

Boston

New York

Atlanta

Miami

Dallas

Houston

Distance Table (in miles)

Chicago Boston New York Atlanta Miami Dallas Houston

0 983 787 714 1375 967 1087

983 0 214 1102 1763 1723 1842

787 214 0 888 1549 1548 1627

714 1102 888 0 661 781 810

1375 1763 1549 661 0 1426 1187

967 1723 1548 781 1426 0 239

1087 1842 1627 810 1187 239 0

1723 1548 781 1426 0 239

Thus far, you have used one-dimensional arrays to model linear collections of elements. You can use a two-dimensional array to represent a matrix or a table. For example, the following table that describes the distances between the cities can be represented using a two-dimensional array.

Page 100: 06 Slide

100Liang, Introduction to Java Programming, Seventh Edition, (c) 2009 Pearson Education, Inc. All rights reserved. 0136012671

Declare/Create Two-dimensional Arrays// Declare array ref var

dataType[][] refVar;

// Create array and assign its reference to variable

refVar = new dataType[10][10];

// Combine declaration and creation in one statement

dataType[][] refVar = new dataType[10][10];

// Alternative syntax

dataType refVar[][] = new dataType[10][10];

Page 101: 06 Slide

101Liang, Introduction to Java Programming, Seventh Edition, (c) 2009 Pearson Education, Inc. All rights reserved. 0136012671

Declaring Variables of Two-dimensional Arrays and Creating

Two-dimensional Arrays

int[][] matrix = new int[10][10]; orint matrix[][] = new int[10][10];matrix[0][0] = 3;

for (int i = 0; i < matrix.length; i++) for (int j = 0; j < matrix[i].length; j++) matrix[i][j] = (int)(Math.random() * 1000);

double[][] x;

Page 102: 06 Slide

102Liang, Introduction to Java Programming, Seventh Edition, (c) 2009 Pearson Education, Inc. All rights reserved. 0136012671

Two-dimensional Array Illustration

0 1 2 3 4

0

7

0 1 2 3 4

1 2 3 4

0 1 2 3 4 matrix[2][1] = 7;

matrix = new int[5][5];

3

7

0 1 2

0 1 2

int[][] array = { {1, 2, 3}, {4, 5, 6}, {7, 8, 9}, {10, 11, 12} };

1

2

3

4

5

6

8

9

10

11

12

array.length? 4

array[0].length? 3

matrix.length? 5

matrix[0].length? 5

Page 103: 06 Slide

103Liang, Introduction to Java Programming, Seventh Edition, (c) 2009 Pearson Education, Inc. All rights reserved. 0136012671

Declaring, Creating, and Initializing Using Shorthand Notations

You can also use an array initializer to declare, create and initialize a two-dimensional array. For example,

int[][] array = new int[4][3];

array[0][0] = 1; array[0][1] = 2; array[0][2] = 3;

array[1][0] = 4; array[1][1] = 5; array[1][2] = 6;

array[2][0] = 7; array[2][1] = 8; array[2][2] = 9;

array[3][0] = 10; array[3][1] = 11; array[3][2] = 12;

int[][] array = {

{1, 2, 3},

{4, 5, 6},

{7, 8, 9},

{10, 11, 12}

};

Same as

Page 104: 06 Slide

104Liang, Introduction to Java Programming, Seventh Edition, (c) 2009 Pearson Education, Inc. All rights reserved. 0136012671

Lengths of Two-dimensional Arrays

x

x[0]

x[1]

x[2]

x[0][0] x[0][1] x[0][2] x[0][3] x[1][0] x[1][1] x[1][2] x[1][3] x[2][0] x[2][1] x[2][2] x[2][3]

x.length is 3

x[0].length is 4

x[1].length is 4

x[2].length is 4

int[][] x = new int[3][4];

Page 105: 06 Slide

105Liang, Introduction to Java Programming, Seventh Edition, (c) 2009 Pearson Education, Inc. All rights reserved. 0136012671

Lengths of Two-dimensional Arrays, cont.

int[][] array = {

{1, 2, 3},

{4, 5, 6},

{7, 8, 9},

{10, 11, 12}

};

array.length

array[0].length

array[1].length

array[2].length

array[3].length

array[4].length ArrayIndexOutOfBoundsException

Page 106: 06 Slide

106Liang, Introduction to Java Programming, Seventh Edition, (c) 2009 Pearson Education, Inc. All rights reserved. 0136012671

Ragged ArraysEach row in a two-dimensional array is itself an array. So,

the rows can have different lengths. Such an array is known as a ragged array. For example,

int[][] matrix = {

{1, 2, 3, 4, 5},

{2, 3, 4, 5},

{3, 4, 5},

{4, 5},

{5}

};

matrix.length is 5matrix[0].length is 5matrix[1].length is 4matrix[2].length is 3matrix[3].length is 2matrix[4].length is 1

Page 107: 06 Slide

107Liang, Introduction to Java Programming, Seventh Edition, (c) 2009 Pearson Education, Inc. All rights reserved. 0136012671

Ragged Arrays, cont.

1 2 3 4 5

int[][] triangleArray = { {1, 2, 3, 4, 5}, {2, 3, 4, 5}, {3, 4, 5}, {4, 5}, {5} };

1 2 3 4 1 2 3 1 2 1 2

Page 108: 06 Slide

108Liang, Introduction to Java Programming, Seventh Edition, (c) 2009 Pearson Education, Inc. All rights reserved. 0136012671

Problem: Grading Multiple-Choice Test

Objective: write a program that grades

multiple-choice test.

A B A C C D E E A D D B A B C A E E A D E D D A C B E E A D C B A E D C E E A D A B D C C D E E A D B B E C C D E E A D B B A C C D E E A D E B E C C D E E A D

0 1 2 3 4 5 6 7 8 9

Student 0 Student 1 Student 2 Student 3 Student 4 Student 5 Student 6 Student 7

Students’ Answers to the Questions:

D B D C C D A E A D

0 1 2 3 4 5 6 7 8 9

Key

Key to the Questions:

GradeExamGradeExam RunRun

Page 109: 06 Slide

109Liang, Introduction to Java Programming, Seventh Edition, (c) 2009 Pearson Education, Inc. All rights reserved. 0136012671

Problem: Finding Two Points Nearest to Each Other

FindNearestPointsFindNearestPoints RunRun

(1, 1)

(-1, -1)

(-1, 3)

(2, 0.5)

(3, 3)

(4, 2)

(2, -1)

(4, -0.5)

-1 3 -1 -1 1 1 2 0.5 2 -1 3 3 4 2 4 -0.5

x y

0 1 2 3 4 5 6 7

Page 110: 06 Slide

110Liang, Introduction to Java Programming, Seventh Edition, (c) 2009 Pearson Education, Inc. All rights reserved. 0136012671

Case Study: Sudoku

5 3 7

6 1 9 5

9 8 6

8 6 3

4 8 3 1

7 2 6

6

4 1 9 5

8 7 9

5 3 4 6 7 8 9 1 2

6 7 2 1 9 5 3 4 8

1 9 8 3 4 2 5 6 7

8 5 9 7 6 1 4 2 3

4 2 6 8 5 3 7 9 1

7 1 3 9 2 4 8 5 6

9 6 1 5 3 7 2 8 4

2 8 7 4 1 9 6 3 5

3 4 5 2 8 6 1 7 9

The objective is to fill the grid (see Figure 6.14(a)) so that every row, every column, and every 3×3 box contain the numbers 1 to 9, as shown in Figure 6.14(b).

Page 111: 06 Slide

111Liang, Introduction to Java Programming, Seventh Edition, (c) 2009 Pearson Education, Inc. All rights reserved. 0136012671

Case Study: Sudoku

SudokuSudoku RunRun

int[][] grid =

{{5, 3, 0, 0, 7, 0, 0, 0, 0},

{6, 0, 0, 1, 9, 5, 0, 0, 0},

{0, 9, 8, 0, 0, 0, 0, 6, 0},

{8, 0, 0, 0, 6, 0, 0, 0, 3},

{4, 0, 0, 8, 0, 3, 0, 0, 1},

{7, 0, 0, 0, 2, 0, 0, 0, 6},

{0, 6, 0, 0, 0, 0, 2, 8, 0},

{0, 0, 0, 4, 1, 9, 0, 0, 5},

{0, 0, 0, 0, 8, 0, 0, 7, 9}

};

int[][] freeCellList =

{{0, 2}, {0, 3}, {0, 5}, {0, 6}, {0, 7}, {0, 8},

{1, 1}, {1, 2}, {1, 6}, {1, 7}, {1, 8},

{2, 0}, {2, 3}, {2, 4}, {2, 5}, {2, 6}, {2, 8},

{3, 1}, {3, 2}, {3, 3}, {3, 5}, {3, 6}, {3, 7},

{4, 1}, {4, 2}, {4, 4}, {4, 6}, {4, 7},

{5, 1}, {5, 2}, {5, 3}, {5, 5}, {5, 6}, {5, 7},

{6, 0}, {6, 2}, {6, 3}, {6, 4}, {6, 5}, {6, 8},

{7, 0}, {7, 1}, {7, 2}, {7, 6}, {7, 7},

{8, 0}, {8, 1}, {8, 2}, {8, 3}, {8, 5}, {8, 6} };

Run with prepared inputRun with prepared input

Page 112: 06 Slide

112Liang, Introduction to Java Programming, Seventh Edition, (c) 2009 Pearson Education, Inc. All rights reserved. 0136012671

Multidimensional ArraysOccasionally, you will need to represent n-dimensional data structures. In Java, you can create n-dimensional arrays for any integer n.  The way to declare two-dimensional array variables and create two-dimensional arrays can be generalized to declare n-dimensional array variables and create n-dimensional arrays for n >= 3. For example, the following syntax declares a three-dimensional array variable scores, creates an array, and assigns its reference to scores.

 double[][][] scores = new double[10][5][2];

Page 113: 06 Slide

113Liang, Introduction to Java Programming, Seventh Edition, (c) 2009 Pearson Education, Inc. All rights reserved. 0136012671

Problem: Calculating Total Scores

Objective: write a program that calculates the total score for students in a class. Suppose the scores are stored in a three-dimensional array named scores. The first index in scores refers to a student, the second refers to an exam, and the third refers to the part of the exam. Suppose there are 7 students, 5 exams, and each exam has two parts--the multiple-choice part and the programming part. So, scores[i][j][0] represents the score on the multiple-choice part for the i’s student on the j’s exam. Your program displays the

total score for each student.

TotalScoreTotalScore RunRun

Page 114: 06 Slide

114Liang, Introduction to Java Programming, Seventh Edition, (c) 2009 Pearson Education, Inc. All rights reserved. 0136012671

6000 12000 6000 10000

27950 46700 23350 37450

67700 112850 56425 96745

141250 171950 85975 156600

307050 307050 153525 307050

10%

15%

27%

30%

35%

38.6%

Refine the table Exercise 6.30

Page 115: 06 Slide

115Liang, Introduction to Java Programming, Seventh Edition, (c) 2009 Pearson Education, Inc. All rights reserved. 0136012671

6000 27950 67700 141250 307050

12000 46700 112850 171950 307050

6000 23350 56425 85975 153525

10000 37450 96745 156600 307050

Rotate

Single filer

Married jointly

Married separately

Head of household

6000 12000 6000 10000

27950 46700 23350 37450

67700 112850 56425 96745

141250 171950 85975 156600

307050 307050 153525 307050

Reorganize the table

Page 116: 06 Slide

116Liang, Introduction to Java Programming, Seventh Edition, (c) 2009 Pearson Education, Inc. All rights reserved. 0136012671

int[][] brackets = {

{6000, 27950, 67700, 141250, 307050}, // Single filer

{12000, 46700, 112850, 171950, 307050}, // Married jointly

{6000, 23350, 56425, 85975, 153525}, // Married separately

{10000, 37450, 96700, 156600, 307050} // Head of household

};

10%

15%

27%

30%

35%

38.6%double[] rates = {0.10, 0.15, 0.27, 0.30, 0.35, 0.386};

6000 27950 67700 141250 307050

12000 46700 112850 171950 307050

6000 23350 56425 85975 153525

10000 37450 96745 156600 307050

Single filer

Married jointly

Married separately

Head of household

Declare Two Arrays