CS II Lesson 4

Professor Abdul-Quader

Arrays

Warm Up

What does the code do? It computes something, what does it compute?

Scanner sc = new Scanner(System.in);
System.out.println("Type in a positive integer");
int input = sc.nextInt();
int t = 0;
for (int i = 0; i < input; i++) {
  t += i;
}
System.out.println(t);

Code Snippet 2

Scanner sc = new Scanner(System.in);
System.out.println("Type in a positive integer");
int input = sc.nextInt();
int t = 1;
for (int i = 1; i < input; i++) {
  t *= i;
}
System.out.println(t);

Code Snippet 3

Scanner sc = new Scanner(System.in);
System.out.println("Type in a positive integer");
int x = sc.nextInt();
System.out.println("Type in another integer");
int y = sc.nextInt();
int t = 1;
for (int i = 0; i < y; i++) {
  t *= x;
}
System.out.println(t);

Problem Solving Tips

How do we solve a problem like “Determine if a number is a perfect square?”

  1. Examples! First think of example inputs for all the different types of output: ie one for “Not a number / not valid”, one for “Yes, it’s a perfect square”, one for “No, it’s not”.
  2. Steps: Ask yourself: “What are the steps needed to figure out that 16 is a perfect square? What about for 326?”

  1. Algorithm: Turn your steps into a specific algorithm. Write down those steps as precisely / explicitly as possible. Use common programming constructs in your algorithm: loops, variables, if/else statements, etc.
  2. Code: Once you have a specific algorithm, then it’s time to start writing some code. The algorithm should not be too hard to translate to code.
  3. Testing: Try out your code using several different inputs. See if it works if the input is valid, not valid, if the input is a perfect square, not a perfect square, etc. Try to test at least two inputs for each possible output that you expect.

Arrays

int[] x = new int[7]; // creates an array of 7 integers
x[0] = 1; // first element of the array is x[0]
for (int i = 1; i < 7; i++) {
  x[i] = i * x[i-1];
}
System.out.println(x[6]);
  • array: sequences of values of the same type
  • above: array of 7 integers
  • in brackets: index
  • first index is 0, last index is size - 1

References

Array is a reference

When we declare a new array, we get a reference to a section of memory that is allocated (on the heap). The value of the array variable is technically the memory address that it is referring to.

Side effect: what does the following output?

int[] x = new int[10];
System.out.println(x);

Snippet

int[] x = new int[1];
x[0] = 10;
int[] y = new int[1];
y[0] = x[0];
if (x == y) {
  System.out.println("Equal.");
} else {
  System.out.println("What?");
}

Draw a memory diagram. What does this output?

Exercise

Declare two integer arrays of size 2. Ask for the user to input into each of the elements. Compare the two arrays and determine if they have the same numbers in the same order.

Example input / output

Enter in the first element of the first list:
   5
Enter in the second element of the first list:
   2
Enter in the first element of the second list:
   5
Enter in the second element of the second list:
   2
The arrays are equal.

Loops

Use “length” property to tell the size of the array:

int[] numbers;
// some code that initializes numbers
...

// add up all the elements of numbers
int total = 0;
for (int i = 0; i < numbers.length; i++) {
   total += numbers[i];
}
System.out.println("The total is " + total);

Foreach loop

String[] names;
// some code which initializes names

for (String name : names) {
  System.out.println(name);
}

If we just need the objects in the arrays, and not the index, this is helpful.

Technically called “enhanced for loop.” (Usually just referred to as “foreach”)

Arrays of arrays

We can create arrays of any type we like, using this [] syntax:

int[] x = new int[5]; // creates an array of integers
String[] s = new String[10]; // creates an array of strings

Question: What about arrays of arrays?

Multidimensional arrays

Yes, it works!

int[][] x = new int[5][3];
for (int i = 0; i < 5; i++) {
  for (int j = 0; j < 3; j++) {
    x[i][j] = i*j;
  }
}

Take a minute to draw a memory diagram for this.

Reading

  • Think Java, Chapter 7.
  • Do as many exercises as you can. (Might need to skim chapter 4).
  • Catch up on any readings that you missed.
  • Do the exercises from the book (even when I don’t assign any)!

Upcoming

  • Exam 1 (in-class) February 20 (2 weeks)
  • Project 1 assigned this weekend, due Friday, 2/28 (3 weeks). Get started soon!
  • Getting started tips:
    • Validate input first!
    • Draw things out / think through algorithms on paper.
  • Monday: small groups / asynchronous.

Quizzes

For any problem you did not receive full credit on (on paper):

  1. Explain what you did wrong.
  2. Make a memory diagram to show what should happen in the code.
  3. State the correct answer.

Submit this to me in class on Monday. (Even if you are not scheduled for a meeting.)

Exam 1

  • Start studying now!
  • Some questions: reading code (make memory diagrams).
  • Some questions: write short code snippets
  • Some questions: put a few things together into a larger project.
  • Study by doing exercises (textbook, class exercises).
  • Come to office hours (mine and LAs)
  • Tutoring (Einstein Corner)
// reveal.js plugins