Unit 8 - 2D Arrays
Notes, Hacks, and HW for 2D Arrays.
- Learning Objective!
- 2D Array Vocab:
- The Basics:
- Accessing and Updating Elements of a 2D Array:
- Nested Loops, Our Beloved:
- Searching for a Value in a 2D Array:
- Extra Credit: Christmas Tree
2D Array Vocab:
- Array = a data structure used to implement a collection (list) of primitive or object reference data
- Element = a single value in the array
- Index = the position of the element in the array (starts from 0)
-
Array Length = the number of elements in the array
- Is public, so can be accessed in any class
- Is also final, so can’t change it after array has been created
The Basics:
- A 2D array is an array of arrays, and can be a better way to store data
- Declaring a 2D array:
DataType[][] nameOf2DArray
- Initializing a 2D array
-
DataType[][] nameOf2DArray = new DataType[r][c];
- r = # of rows
- The # of arrays in the array
-
r = list.length
- c = # of columns
- The # of elements in the inner arrays
c = list[0].length
- r = # of rows
-
Initializing a Sample Array:
public class Test {
public static void main(String[] args) {
int[][] arr = {
{ 1, 2, 3 },
{ 4, 5, 6 },
{ 7, 8, 9 }
};
System.out.println("arr[0][0] = " + arr[0][0]);
System.out.println("arr[1][2] = " + arr[1][2]);
System.out.println("arr[2][1] = " + arr[2][1]);
}
}
Test.main(null);
public class Test {
public static void main(String[] args) {
String[][] arr = {
{ "a", "f", "g" },
{ "b", "e", "h" },
{ "c", "d", "i" }
};
System.out.println(arr[2][2]);
}
}
Test.main(null);
- a quick tip for the future:
list[list.length - 1][list[0].length - 1]
- Updating an element:
list[r][c] = value;
public class Test {
public static void main(String[] args) {
String[][] arr = {
{ "Atlanta", "Baltimore", "Chicago" },
{ "Australia", "Boston", "Cincinnati" },
{ "Austin", "Beaumont", "Columbus" }
};
// Change Austin to Athens and print!
System.out.println("Change Austin to Athens and print!");
arr[2][0] = "Athens";
System.out.println(arr[2][0]);
}
}
Test.main(null);
public class Test {
public static void main(String[] args) {
String[][] arr = {
{ "a", "f", "g", "l" },
{ "b", "e", "h", "k" },
{ "c", "d", "i", "j" }
};
for (int row = 0; row < 3; row++) {
for (int col = 0; col < 4; col++) {
System.out.print(arr[row][col] + " ");
}
System.out.println(" ");
}
}
}
Test.main(null);
public class Test {
public static void main(String[] args) {
String[][] arr = {
{ "Atlanta", "Baltimore", "Chicago" },
{ "Australia", "Boston", "Cincinnati" },
{ "Austin", "Beaumont", "Columbus" }
};
// Print out the array without using numerical values!
for(int row =0; row < arr.length; row++) {
for(int col=0; col < arr[row].length; col++) {
System.out.println(arr[row][col] + " ");
}
System.out.println(" ");
}
}
}
Test.main(null);
public class Test {
public static void main(String[] args) {
String[][] arr = {
{ "Atlanta", "Baltimore", "Chicago" },
{ "Australia", "Boston", "Cincinnati" },
{ "Austin", "Beaumont", "Columbus" }
};
String match = "";
String name = "Boston";
for (String[] row : arr) {
for (String item : row) {
if (item.equals(name)) {
match = name;
}
}
}
if (match.length() == 0) {
System.out.println("No Match!");
} else {
System.out.println(name);
}
}
}
Test.main(null);
public class Test {
public static void main(String[] args) {
String[][] arr = {
{ "Atlanta", "Baltimore", "Chicago" },
{ "Australia", "Boston", "Cincinnati" },
{ "Austin", "Beaumont", "Columbus" }
};
String longest = arr[0][0];
String shortest = arr[0][0];
// Use nested for loops to find the longest or shortest string!
System.out.println("Use nested for loops to find the longest or shortest string!");
for(int row =0; row < arr.length; row++) {
for(int col=0; col < arr[row].length; col++) {
if (arr[row][col].length() > longest.length()) {
longest = arr[row][col];
}
}
}
System.out.println("Longest String: " + longest);
for(int row =0; row < arr.length; row++) {
for(int col=0; col < arr[row].length; col++) {
if (arr[row][col].length() < shortest.length()) {
shortest = arr[row][col];
}
}
}
System.out.println("Shortest String: " + shortest);
}
}
Test.main(null);
int height = 10;
String[][] arr = new String[height][height];
for (int col=0; col<=height; col+=2) {
System.out.println(" ".repeat(height - col/2) +"*".repeat(col));
}
System.out.println(" ".repeat(height - 1) + "*".repeat(2));
System.out.println(" ".repeat(height - 1) + "*".repeat(2));