review
play

Review Recursion Factorial (Iterative and Recursive versions) Call - PowerPoint PPT Presentation

Review Recursion Factorial (Iterative and Recursive versions) Call Stack (Last-in, first-out Queue) Tracing recursive functions Fibonacci Sequence Recursive Implementation Recursive Maze Generation One can declare an


  1. Review • Recursion • Factorial (Iterative and Recursive versions) • Call Stack (Last-in, first-out Queue) • Tracing recursive functions • Fibonacci Sequence – Recursive Implementation • Recursive Maze Generation

  2. One can declare an array of any type int myInt; int [] myInts; float myFloat; float [] myFloats; String myStr; String [] myStrs; … just add [] To create and size the array, use the new keyword myInts = new int[10]; myFloats = new float[20] myStrs = new String[30];

  3. One can declare an array of custom classes Mammoth[] mammoths; // declare array variable void setup() { mammoths = new Mammoth[30]; // create + size array } class Mammoth { String name; String sound; Mammoth( String name, String sound ) { this.name = name; this.sound = sound; } }

  4. If this is a float… float myFloat; and this is an array of floats… float[] myFloats; what is this? float[][] myFloats2;

  5. Declare, size, and fill a 2D array void setup() { float[][] myFloats2 = new float[10][10]; for (int i=0; i<10; i++) { for (int j=0; j<10; j++) { myFloats2[i][j] = random(100); } } j 0 1 2 3 4 5 6 7 8 9 i 0 } 1 2 3 4 5 6 7 8 9 ex1.pde

  6. float[][] vals; void setup() { vals = new float[20][300]; for (int i=0; i<20; i++) { println( vals[i].length ); // What is going on here? } } 300 300 300 300 300 300 ex2.pde

  7. “Ragged” Arrays float[][] ragged; ragged 1 2 0 void setup() { 0 1.23 3.25 9.84 ragged = new float[5][]; 1 2 3 4 0 1 8.87 6.70 5.10 0.59 4.44 for (int i=0; i<5; i++) { int n = int(random(10)); 1 0 ragged[i] = new float[n]; 2 9.01 4.98 } 0 for (int i=0; i<5; i++) { 3 8.50 println(ragged[i].length); } 0 1 2 3 4 4.79 8.11 0.98 1.87 } ex3.pde

  8. Cellular Automata A regular grid of Cells Cell Two States 1. On 2. Off Neighborhood Cell states evolve over time according to a predefined set of rules.

  9. Sample Set of Rules – Conway's Game of Life 1. Any live cell with fewer than two live neighbors dies, as if caused by under-population. 2. Any live cell with two or three live neighbors lives on to the next generation. 3. Any live cell with more than three live neighbors dies, as if by overcrowding. 4. Any dead cell with exactly three live neighbors becomes a live cell, as if by reproduction. An example of "Emergence" http://en.wikipedia.org/wiki/Conway%27s_game_of_life

  10. Interesting Patterns – Conway's Game of Life http://en.wikipedia.org/wiki/Conway%27s_game_of_life

  11. current next Top-level procedure 1. Draw the current grid 2. Advance game by applying rules to all cells of current and filling next 3. Swap current and next grid

  12. int N = 5; boolean[] cell = new boolean[N]; cell  One-dimensional array false 0 false 1 false 2 false 3 false 4

  13. int N = 5; boolean[][] cell = new boolean[N][N]; cell 1 2 3 4 0  Two-dimensional array 0 false false false false false 1 2 3 4 0 … an array of arrays 1 false false false false false 1 2 3 4 0 2 false false false false false 1 2 3 4 0 3 false false false false false 0 1 2 3 4 4 false false false false false

  14. int N = 5; boolean[][] cell = new boolean[N][N]; cell[1][2] = true; cell 1 2 3 4 0 false false false false false 0 false false true false false 1 false false false false false 2 false false false false false 3 false false false false false 4

  15. current: cell[r][c][0] next: cell[r][c][1] // 3-Dimensional Array int N = 50; boolean[][][] cell = new boolean[N][N][2]; cell[1][2][0] = true;

Download Presentation
Download Policy: The content available on the website is offered to you 'AS IS' for your personal information and use only. It cannot be commercialized, licensed, or distributed on other websites without prior consent from the author. To download a presentation, simply click this link. If you encounter any difficulties during the download process, it's possible that the publisher has removed the file from their server.

Recommend


More recommend