Top Banner
COP3502 Programming Fundamentals for CIS Majors 1 Instructor: Parisa Rashidi
92

COP3502 Programming Fundamentals for CIS Majors 1 Instructor: Parisa Rashidi.

Dec 29, 2015

Download

Documents

Crystal Joseph
Welcome message from author
This document is posted to help you gain knowledge. Please leave a comment to let me know what you think about it! Share it to your friends and learn new things together.
Transcript
Page 1: COP3502 Programming Fundamentals for CIS Majors 1 Instructor: Parisa Rashidi.

COP3502 Programming Fundamentals for CIS Majors 1

Instructor: Parisa Rashidi

Page 2: COP3502 Programming Fundamentals for CIS Majors 1 Instructor: Parisa Rashidi.

Chapter 5 Methods Memory management Variable scope

Last Week

Page 3: COP3502 Programming Fundamentals for CIS Majors 1 Instructor: Parisa Rashidi.

Chapter 6 Arrays

DeclarationInitializationAccessCommon operations

Summing all entries, max, min, … for-each loop Variable length argument list Linear search, binary search Sorting

Objectives

Page 4: COP3502 Programming Fundamentals for CIS Majors 1 Instructor: Parisa Rashidi.

Arrays

Page 5: COP3502 Programming Fundamentals for CIS Majors 1 Instructor: Parisa Rashidi.

Read one hundred numbers, compute their average, and find out how many numbers are above the average.

Declaring 100 integer variables?

Motivation

Page 6: COP3502 Programming Fundamentals for CIS Majors 1 Instructor: Parisa Rashidi.

Better solution: using arrays

Array is a data structure that represents a collection of the same type of data.

Solution

int[] myList = new int[7]; 23

45

53

16

32

8

91

Page 7: COP3502 Programming Fundamentals for CIS Majors 1 Instructor: Parisa Rashidi.

Array is a reference type

Solution

23

45

53

16

32

8

91

int[] myList = new int[7];

0x675

myList(memory location of

the actual array)

Array element at

index 6Value of

element at index 6

Page 8: COP3502 Programming Fundamentals for CIS Majors 1 Instructor: Parisa Rashidi.

First approach:

Example:

Second approach (possible, but not preferred):

Example:

Declaring Array

datatype[] arrayRefVar;

double[] myList;

datatype arrayRefVar[];

double myList[];

Page 9: COP3502 Programming Fundamentals for CIS Majors 1 Instructor: Parisa Rashidi.

Example:

Creating Array

arrayRefVar = new datatype[arraySize];

//two stepsdouble[] myList;myList = new double[10];

//one stepdouble[] myList= new double[10];

Page 10: COP3502 Programming Fundamentals for CIS Majors 1 Instructor: Parisa Rashidi.

Once an array is created, its size is fixed.

i.e. it cannot be changed! You can find the size of an array using

For example

This returns 7.

Length of Array

arrayRefVar.length

int length = myList.length;

Page 11: COP3502 Programming Fundamentals for CIS Majors 1 Instructor: Parisa Rashidi.

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

0 for the numeric primitive data types

'\u0000' for char false for boolean

Initial Values

Page 12: COP3502 Programming Fundamentals for CIS Majors 1 Instructor: Parisa Rashidi.

The array elements are accessed through an index.

The array indices are 0-based, i.e., myList indices starts from

0 to 6.

Indexed Variables

Page 13: COP3502 Programming Fundamentals for CIS Majors 1 Instructor: Parisa Rashidi.

Each element of array is an indexed variable:

Example (accessing first element)

Indexed Variables

arrayRefVar[index];

myList[0];

Page 14: COP3502 Programming Fundamentals for CIS Majors 1 Instructor: Parisa Rashidi.

Individual initialization

Populate Array

double[] myList = new double[4];

myList[0] = 1.9;

myList[1] = 2.9;

myList[2] = 3.4;

myList[3] = 3.5;

Page 15: COP3502 Programming Fundamentals for CIS Majors 1 Instructor: Parisa Rashidi.

Shorthand initialization

This shorthand syntax must be in one statement.

Splitting it would cause a syntax error!

Populate Array

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

Page 16: COP3502 Programming Fundamentals for CIS Majors 1 Instructor: Parisa Rashidi.

First create an array Populate the array Use indexed variables to

access items in the same way as a regular variable.

Indexed Variables

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

Page 17: COP3502 Programming Fundamentals for CIS Majors 1 Instructor: Parisa Rashidi.

Read one hundred numbers, compute their average, and find out how many numbers are above the average.

Program

AnalyzeNumbers Run

Page 18: COP3502 Programming Fundamentals for CIS Majors 1 Instructor: Parisa Rashidi.

Program Trace

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]; }}

Declare array variable

Values

Page 19: COP3502 Programming Fundamentals for CIS Majors 1 Instructor: Parisa Rashidi.

Program Trace

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]; }}

Declare array variable, and create an array.

After the array is created

0

1

2

3

4

0

0

0

0

0

Values

Page 20: COP3502 Programming Fundamentals for CIS Majors 1 Instructor: Parisa Rashidi.

Program Trace

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 is 1

After the array is created

0

1

2

3

4

0

0

0

0

0

Values

Page 21: COP3502 Programming Fundamentals for CIS Majors 1 Instructor: Parisa Rashidi.

Program Trace

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 is less than 5

After the array is created

0

1

2

3

4

0

0

0

0

0

Values

Page 22: COP3502 Programming Fundamentals for CIS Majors 1 Instructor: Parisa Rashidi.

Program Trace

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 array is created

0

1

2

3

4

0

1

0

0

0

Values

Page 23: COP3502 Programming Fundamentals for CIS Majors 1 Instructor: Parisa Rashidi.

Program Trace

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 is 2 now

After the array is created

0

1

2

3

4

0

1

0

0

0

Values

Page 24: COP3502 Programming Fundamentals for CIS Majors 1 Instructor: Parisa Rashidi.

Program Trace

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 (=2) is less than 5

After the array is created

0

1

2

3

4

0

1

0

0

0

Values

Page 25: COP3502 Programming Fundamentals for CIS Majors 1 Instructor: Parisa Rashidi.

Program Trace

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[2] is 3

After the array is created

0

1

2

3

4

0

1

3

0

0

Values

Page 26: COP3502 Programming Fundamentals for CIS Majors 1 Instructor: Parisa Rashidi.

Program Trace

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 3

After the array is created

0

1

2

3

4

0

1

3

0

0

Values

Page 27: COP3502 Programming Fundamentals for CIS Majors 1 Instructor: Parisa Rashidi.

Program Trace

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 less than 5

After the array is created

0

1

2

3

4

0

1

3

0

0

Values

Page 28: COP3502 Programming Fundamentals for CIS Majors 1 Instructor: Parisa Rashidi.

Program Trace

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 array is created

0

1

2

3

4

0

1

3

6

0

Values

Page 29: COP3502 Programming Fundamentals for CIS Majors 1 Instructor: Parisa Rashidi.

Program Trace

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 array is created

0

1

2

3

4

0

1

3

6

0

Values

Page 30: COP3502 Programming Fundamentals for CIS Majors 1 Instructor: Parisa Rashidi.

Program Trace

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 array is created

0

1

2

3

4

0

1

3

6

0

Values

Page 31: COP3502 Programming Fundamentals for CIS Majors 1 Instructor: Parisa Rashidi.

Program Trace

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 array is created

0

1

2

3

4

0

1

3

6

10

Values

Page 32: COP3502 Programming Fundamentals for CIS Majors 1 Instructor: Parisa Rashidi.

Program Trace

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

After the array is created

0

1

2

3

4

0

1

3

6

10

Values

Page 33: COP3502 Programming Fundamentals for CIS Majors 1 Instructor: Parisa Rashidi.

Program Trace

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

After the array is created

0

1

2

3

4

0

1

3

6

10

Values

Page 34: COP3502 Programming Fundamentals for CIS Majors 1 Instructor: Parisa Rashidi.

Program Trace

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)

After the array is created

0

1

2

3

4

11

1

3

6

10

Values

Page 35: COP3502 Programming Fundamentals for CIS Majors 1 Instructor: Parisa Rashidi.

Program Trace

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]; }}

Finished

After the array is created

0

1

2

3

4

11

1

3

6

10

Values

Page 36: COP3502 Programming Fundamentals for CIS Majors 1 Instructor: Parisa Rashidi.

PA3 was posted on FridayPoll on Sakai

Announcement

Page 37: COP3502 Programming Fundamentals for CIS Majors 1 Instructor: Parisa Rashidi.

Chapter 5 Methods Memory management Variable scope

Chapter 6 Array

Last Week

Page 38: COP3502 Programming Fundamentals for CIS Majors 1 Instructor: Parisa Rashidi.

Initializing arrays with input values

Example

Scanner input = new Scanner(System.in);

for (int i = 0; i < myList.length; i++) myList[i] = input.nextDouble();

Page 39: COP3502 Programming Fundamentals for CIS Majors 1 Instructor: Parisa Rashidi.

Initializing arrays with random values

Example

for (int i = 0; i < myList.length; i++) { myList[i] = Math.random() * 100;}

Page 40: COP3502 Programming Fundamentals for CIS Majors 1 Instructor: Parisa Rashidi.

Printing arrays

Example

for (int i = 0; i < myList.length; i++) System.out.print(myList[i] + " ");

Page 41: COP3502 Programming Fundamentals for CIS Majors 1 Instructor: Parisa Rashidi.

Summing all elements

Example

double total = 0;for (int i = 0; i < myList.length; i++) total += myList[i];

Page 42: COP3502 Programming Fundamentals for CIS Majors 1 Instructor: Parisa Rashidi.

Finding the largest element

Example

double max = myList[0];

for (int i = 1; i < myList.length; i++) { if (myList[i] > max) max = myList[i];}

Page 43: COP3502 Programming Fundamentals for CIS Majors 1 Instructor: Parisa Rashidi.

Random shuffling

Example

for (int i = 0; i < myList.length; i++) { // Generate an index randomly int index = (int)(Math.random() * myList.length); // Swap myList[i] with myList[index] double temp = myList[i]; myList[i] = myList[index]; myList[index] = temp;}

myList

[0] [1]

.

.

.

[index]

A random index

i

swap

Page 44: COP3502 Programming Fundamentals for CIS Majors 1 Instructor: Parisa Rashidi.

Shifting Elements

Example

double temp = myList[0]; // Retain the first element // Shift elements leftfor (int i = 1; i < myList.length; i++) { myList[i - 1] = myList[i];} // Move the first element to fill in the last positionmyList[myList.length - 1] = temp;

myList

Page 45: COP3502 Programming Fundamentals for CIS Majors 1 Instructor: Parisa Rashidi.

for-each Loops

Page 46: COP3502 Programming Fundamentals for CIS Majors 1 Instructor: Parisa Rashidi.

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-each

for (double value: myList) System.out.println(value);

for (elementType value:arrayRefVar) …

Page 47: COP3502 Programming Fundamentals for CIS Majors 1 Instructor: Parisa Rashidi.

Suppose you play the Pick-10 lotto. Each ticket has 10 unique numbers ranging from 1 to 99. You buy a lot of tickets. You like to have your tickets to cover all numbers from 1 to 99. Write a program that reads the ticket numbers from a file and checks whether all numbers are covered. Assume the last number in the file is 0.

Program

RunLotto Numbers Sample Data

Page 48: COP3502 Programming Fundamentals for CIS Majors 1 Instructor: Parisa Rashidi.

The problem is to write a program that picks four cards randomly from a deck of 52 cards. All the cards can be represented using an array named deck, filled with initial values 0 to 52, as follows:

Program

DeckOfCards Run

int[] deck = new int[52];// Initialize cardsfor (int i = 0; i < deck.length; i++) deck[i] = i;

Page 49: COP3502 Programming Fundamentals for CIS Majors 1 Instructor: Parisa Rashidi.

Cards 0-12: 13 Spades Cards 13-25: 13 Hearts Cards 26-38: 13 Diamonds Cards 39-51: 13 Clubs

Suit: 0-3 (i.e. Spades, Hearts, Diamonds, Clubs)

Rank: 0-12 (i.e. Ace, 2, …, 10, Jack, Queen, King)

deck / 13: suit of the card (0-3) deck % 13: rank of the card (0-12)

Program

Page 50: COP3502 Programming Fundamentals for CIS Majors 1 Instructor: Parisa Rashidi.

Program

0 . . .

12 13 . . .

25 26 . . .

38 39 . . .

51

13 Spades (? )

13 Hearts (? )

13 Diamonds (?)

13 Clubs (? )

0 . . .

12 13 . . .

25 26 . . .

38 39 . . .

51

deck [0] . . .

[12] [13]

.

.

. [25] [26]

.

.

. [38] [39]

.

.

. [51]

Random shuffle

6 48 11 24 . . . . . . . . . . . . . . . .

deck [0] [1] [2] [3] [4] [5] . . .

[25] [26]

.

.

. [38] [39]

.

.

. [51]

Card number 6 is 7 of Spades

Card number 48 is 10 of Clubs

Card number 11 is Queen of Spades

Card number 24 is Queen of Hearts

Page 51: COP3502 Programming Fundamentals for CIS Majors 1 Instructor: Parisa Rashidi.

Array Copy

Page 52: COP3502 Programming Fundamentals for CIS Majors 1 Instructor: Parisa Rashidi.

Arrays are reference type, so be careful!

After assignment, both lists will point to the same memory location.

Array Copy

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 53: COP3502 Programming Fundamentals for CIS Majors 1 Instructor: Parisa Rashidi.

To copy the contents (and not the reference), you can use a loop:

Array Copy

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 54: COP3502 Programming Fundamentals for CIS Majors 1 Instructor: Parisa Rashidi.

To copy the contents (and not the reference), you can also use the arrayCopy utility:

Example

Array Copy

System.arraycopy(source, srcPos, target, tarPos, length);

int[] sourceArray = {2, 3, 1, 5, 10};int[] targetArray = new int[sourceArray.length];

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

Page 55: COP3502 Programming Fundamentals for CIS Majors 1 Instructor: Parisa Rashidi.

Passing Array

Page 56: COP3502 Programming Fundamentals for CIS Majors 1 Instructor: Parisa Rashidi.

Two ways to pass an array to a method

Passing Array

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

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

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

Anonymous Array

Page 57: COP3502 Programming Fundamentals for CIS Majors 1 Instructor: Parisa Rashidi.

Two Java 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.

Passing Values

23

45

53

16

32

8

int[] y = new int[7];

y

int x = 10;

10

x

Page 58: COP3502 Programming Fundamentals for CIS Majors 1 Instructor: Parisa Rashidi.

For a parameter of a primitive type value:

The actual value is passed. Changing the value inside the method

does not affect the value outside the method.

For a parameter of an array (reference) type:

The value of the parameter contains a reference to an array

Any changes to the array that occur inside the method body will affect the original array that was passed as the argument.

Passing Values

Page 59: COP3502 Programming Fundamentals for CIS Majors 1 Instructor: Parisa Rashidi.

Midterm examRegular class time on Feb. 27In the class (PUGH 170)Based on the materials in the

lectures notes, textbook, homeworkTextbook: chapters 1, 2, 3, 4, 5, 6Lecture notes: 1, 2, 3, 4, 5, 6

Announcements

Page 60: COP3502 Programming Fundamentals for CIS Majors 1 Instructor: Parisa Rashidi.

Exam review session Next week: Wednesday or Friday

No homework this weekPoll closing on Monday, vote!

Announcements

Page 61: COP3502 Programming Fundamentals for CIS Majors 1 Instructor: Parisa Rashidi.

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

Program

TestPassArray Run

Page 62: COP3502 Programming Fundamentals for CIS Majors 1 Instructor: Parisa Rashidi.

Return Array

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 1 2 3 4 5 6

result 6 5 4 3 2 1

Page 63: COP3502 Programming Fundamentals for CIS Majors 1 Instructor: Parisa Rashidi.

Generate 100 lowercase letters randomly and assign to an array of characters. Count the occurrence of each letter in the array.

Program

CountLettersInArray Run

Page 64: COP3502 Programming Fundamentals for CIS Majors 1 Instructor: Parisa Rashidi.

Variable-Length Argument Lists

Page 65: COP3502 Programming Fundamentals for CIS Majors 1 Instructor: Parisa Rashidi.

You can pass a variable number of arguments to a method

Type should be followed by an ellipsis (…)

Variable Length args

Typename … parameterName

Page 66: COP3502 Programming Fundamentals for CIS Majors 1 Instructor: Parisa Rashidi.

Only one variable-length argument in each method

Must be the last parameter

Variable Length args

Page 67: COP3502 Programming Fundamentals for CIS Majors 1 Instructor: Parisa Rashidi.

Java treats it like an arrayYou can use An array or The variable-length argument

list

Variable Length args

Page 68: COP3502 Programming Fundamentals for CIS Majors 1 Instructor: Parisa Rashidi.

Problem: finding the maximum in a list of unspecified number of values

Variable Length args

VargArgsDemo Run

Page 69: COP3502 Programming Fundamentals for CIS Majors 1 Instructor: Parisa Rashidi.

Searching & Sorting

Page 70: COP3502 Programming Fundamentals for CIS Majors 1 Instructor: Parisa Rashidi.

The process of looking for a specific element in a list

A common task in computer programming

We will learn about two commonly used approaches

Linear search Binary search

Search

Page 71: COP3502 Programming Fundamentals for CIS Majors 1 Instructor: Parisa Rashidi.

Example

Search

list

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

[0] [1] [2] …

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

Page 72: COP3502 Programming Fundamentals for CIS Majors 1 Instructor: Parisa Rashidi.

The linear search approach compares the key element, 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.

Linear Search

Page 73: COP3502 Programming Fundamentals for CIS Majors 1 Instructor: Parisa Rashidi.

Illustration of linear search

Linear Search

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

Key List

Page 74: COP3502 Programming Fundamentals for CIS Majors 1 Instructor: Parisa Rashidi.

Array Search

Linear search Binary search

Sort Selection sort Insertion sort

Previously

Page 75: COP3502 Programming Fundamentals for CIS Majors 1 Instructor: Parisa Rashidi.

For binary search to work, the elements in the array must already be ordered.

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

Binary Search

Page 76: COP3502 Programming Fundamentals for CIS Majors 1 Instructor: Parisa Rashidi.

1. Compare the key with the element in the middle of the array

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

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

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

Binary Search

Page 77: COP3502 Programming Fundamentals for CIS Majors 1 Instructor: Parisa Rashidi.

Example

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

Page 78: COP3502 Programming Fundamentals for CIS Majors 1 Instructor: Parisa Rashidi.

Binary Search

/** 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; int result = -1;   while (high >= low) { int mid = (low + high) / 2; if (key < list[mid]) high = mid - 1; else if (key == list[mid]) result = mid; else low = mid + 1; }  if(result == -1) result = -1 – low; return result;}

Page 79: COP3502 Programming Fundamentals for CIS Majors 1 Instructor: Parisa Rashidi.

Java provides several overloaded binarySearch methods

(Arrays should be ordered)

Binary Search

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

Page 80: COP3502 Programming Fundamentals for CIS Majors 1 Instructor: Parisa Rashidi.

More? “The Art of Computer

Programming” by Donald Knuth.

Search & Sort

Page 81: COP3502 Programming Fundamentals for CIS Majors 1 Instructor: Parisa Rashidi.

We will look at two different types of sorting

Selection sort Insertion sort

Sorting

Page 82: COP3502 Programming Fundamentals for CIS Majors 1 Instructor: Parisa Rashidi.

1. Find the largest (smallest) number in the list and place it last (first).

2. Then find the largest (smallest) number remaining and place it next to last (first)

3. Repeat step 2 until the list contains only a single number

Selection Sort

Page 83: COP3502 Programming Fundamentals for CIS Majors 1 Instructor: Parisa Rashidi.

Selection Sort

2 9 5 4 8 1 6

swap

Select 1 (the smallest) and swap it with 2 (the first) in the list

1 9 5 4 8 2 6

swap

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

1 2 5 4 8 9 6

swap

1 2 4 5 8 9 6

Select 2 (the smallest) and swap it with 9 (the first) in the remaining list

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

Select 4 (the smallest) and swap it with 5 (the first) in the remaining list

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

1 2 4 5 8 9 6

Select 6 (the smallest) and swap it with 8 (the first) in the remaining list

1 2 4 5 6 9 8

swap

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

1 2 4 5 6 8 9

Select 8 (the smallest) and swap it with 9 (the first) in the remaining list

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

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

5 is the smallest and in the right position. No swap is necessary

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

swap

Page 84: COP3502 Programming Fundamentals for CIS Majors 1 Instructor: Parisa Rashidi.

Program design

Selection Sort

for (int i = 0; i < list.length; i++) { //select the smallest element in list[i..list.length-1]; //swap the smallest with list[i], if necessary;}

Page 85: COP3502 Programming Fundamentals for CIS Majors 1 Instructor: Parisa Rashidi.

//find the smallest element in the unsorted portion of the list

Selection Sort

double currentMin = list[i]; int currentMinIndex = i; for (int j = i; j < list.length; j++) { if (currentMin > list[j]) { currentMin = list[j]; currentMinIndex = j; } }

Page 86: COP3502 Programming Fundamentals for CIS Majors 1 Instructor: Parisa Rashidi.

// if list[i] is in its correct position

Selection Sort

if (currentMinIndex != i) { list[currentMinIndex] = list[i]; list[i] = currentMin; }

Page 87: COP3502 Programming Fundamentals for CIS Majors 1 Instructor: Parisa Rashidi.

Selection Sort

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

selectionSort

Page 88: COP3502 Programming Fundamentals for CIS Majors 1 Instructor: Parisa Rashidi.

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.

Insertion Sort

Page 89: COP3502 Programming Fundamentals for CIS Majors 1 Instructor: Parisa Rashidi.

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

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

Insertion Sort

Page 90: COP3502 Programming Fundamentals for CIS Majors 1 Instructor: Parisa Rashidi.

Example: int[] myList = {2, 9, 5, 4, 8, 1,

6};

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

InsertSort

Page 91: COP3502 Programming Fundamentals for CIS Majors 1 Instructor: Parisa Rashidi.

public static void insertionSort(double[] list) { for (int i = 1; i < list.length; i++) { /** insert list[i] into a sorted sublist list[0..i-1] so that list[0..i] is sorted. */ double currentElement = list[i]; int k; for (k = i - 1; k >= 0 && list[k] > currentElement; k--) { list[k + 1] = list[k]; }

// Insert the current element into list[k+1] list[k + 1] = currentElement; } }

Insertion Sort

InsertSort

Page 92: COP3502 Programming Fundamentals for CIS Majors 1 Instructor: Parisa Rashidi.

Since sorting is frequently used in programming, Java provides several overloaded sort methods for sorting.

Sort Utility

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);