Lesson 2
Columnar ZigZag and Reverse Traversal of Matrices
Introduction

Hello, fellow coder! Are you excited to dive into a new, intriguing coding challenge? In this lesson, we're going to explore special traversals of matrices. Matrices are rectangular 2D arrays where each inner array maintains the same size, a property inherent to Java. We'll find our way through a matrix by climbing up and down the columns, zigzagging as we go. Sound exciting? Buckle up, then, and get ready!

Task Statement

Here's the task: you've been given a 2D array consisting of individual cells, each holding a unique integer value. Your goal is to create a function that will traverse this matrix, starting at the bottom-right cell. From there, you'll travel up to the top of the same column, then move left to the next column, and then continue downward from the top of this new column. After reaching the bottom of the column, you again move left and start moving upward. This unique traversal pattern will be performed until all the cells have been visited.

Consider this small 3x4 matrix as an example:

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

With the described traversal pattern, your function should return this list: [12, 8, 4, 3, 7, 11, 10, 6, 2, 1, 5, 9].

Solution Building: Step 1

The first step towards a solution is understanding the dimensions of the matrix with which we're working. We can do this using array properties. Let's set up our function and identify the matrix size:

Java
1class Solution { 2 public static int[] columnTraverse(int[][] matrix) { 3 int rows = matrix.length; 4 int cols = matrix[0].length; 5 } 6}
Solution Building: Step 2

Now that we're aware of the matrix dimensions, we should establish the starting point (bottom-right) and the direction of travel (upward initially). Additionally, we'll need an array to keep track of the cells we've visited in order:

Java
1class Solution { 2 public static int[] columnTraverse(int[][] matrix) { 3 int rows = matrix.length; 4 int cols = matrix[0].length; 5 String direction = "up"; 6 int row = rows - 1; 7 int col = cols - 1; 8 int[] output = new int[rows * cols]; 9 int index = 0; 10 } 11}
Solution Building: Step 3

It's time to go exploring! We'll now implement a while loop to traverse the matrix. This loop will continue until we have covered all the cells in the matrix. As we "visit" each cell, we'll add the value in the cell to our array.

Java
1class Solution { 2 public static int[] columnTraverse(int[][] matrix) { 3 int rows = matrix.length; 4 int cols = matrix[0].length; 5 String direction = "up"; 6 int row = rows - 1; 7 int col = cols - 1; 8 int[] output = new int[rows * cols]; 9 int index = 0; 10 11 while (index < rows * cols) { 12 output[index++] = matrix[row][col]; 13 14 if (direction.equals("up")) { 15 if (row - 1 < 0) { 16 direction = "down"; 17 col -= 1; 18 } else { 19 row -= 1; 20 } 21 } else { 22 if (row + 1 == rows) { 23 direction = "up"; 24 col -= 1; 25 } else { 26 row += 1; 27 } 28 } 29 } 30 31 return output; 32 } 33 34 public static void main(String[] args) { 35 int[][] matrix = { 36 {1, 2, 3, 4}, 37 {5, 6, 7, 8}, 38 {9, 10, 11, 12} 39 }; 40 41 int[] result = columnTraverse(matrix); 42 for (int num : result) { 43 System.out.print(num + " "); 44 } 45 } 46}

That's it, we've completed the function! This Java function will return the output array, which gives us the order of traversal through the matrix.

Traverse Using Decreasing Range

Let's explore one more way of traversal. We can leverage the utility of Java's for-loop to traverse a 2D matrix in reverse order. This flexibility can also create a sequence that decrements.

To achieve this, we use a for-loop with decrementing indices.

Consider our familiar 3x4 matrix:

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

Using decrementing loops, the reverse traverse pattern would produce this list: {12, 11, 10, 9, 8, 7, 6, 5, 4, 3, 2, 1}.

Here's how we can implement this reverse traversal:

Java
1class Solution { 2 public static int[] reverseTraverse(int[][] matrix) { 3 int rows = matrix.length; 4 int cols = matrix[0].length; 5 int[] output = new int[rows * cols]; 6 int index = 0; 7 8 for (int row = rows - 1; row >= 0; --row) { 9 for (int col = cols - 1; col >= 0; --col) { 10 output[index++] = matrix[row][col]; 11 } 12 } 13 14 return output; 15 } 16 17 public static void main(String[] args) { 18 int[][] matrix = { 19 {1, 2, 3, 4}, 20 {5, 6, 7, 8}, 21 {9, 10, 11, 12} 22 }; 23 24 int[] result = reverseTraverse(matrix); 25 for (int num : result) { 26 System.out.print(num + " "); 27 } 28 } 29}

In this function, we start the loop for row from rows - 1 and run it to 0, decrementing it at each step. Similarly, our nested loop for col starts from cols - 1 and goes to 0. This allows us to start from the bottom-right corner and traverse leftward, then upward, covering the entire matrix in reverse order.

As you gain proficiency in matrix traversal in Java, you'll discover the many creative ways to utilize Java's flexible syntax. The more you experiment with different traversal methods, the better you become! Happy practicing!

Lesson Summary

Congratulations! You have made it through a challenging task in which you maneuvered your way through complex matrix traversal patterns. The functions you've designed not only test your Java coding skills but also your ability to visualize spatial patterns.

It's time to put your new knowledge to the test! The next step is to tackle similar challenges on your own. I encourage you to use this lesson as your guide and don't forget to experiment with different matrix sizes and cell values. With plenty of practice, you'll soon master these traversal patterns!

Enjoy this lesson? Now it's time to practice with Cosmo!
Practice is how you turn knowledge into actual skills.