Welcome back! As we dive further into stack operations in Java, remember how these structures serve similar functions in programming as they do in simple physical tasks. For instance, when you stack plates, the last one you put on top is the first one you'll take off when setting the table. A computer's stack allows us to temporarily put away pieces of data, just as we can pile those plates and retrieve them later in the reverse order of how we placed them away. Today, we will apply the last-in, first-out principle to solve two specific problems that will solidify your understanding of stack operations in Java.
Validating nested structures such as parentheses is common in computing — it's like ensuring that a series of opened boxes are correctly closed. We will create a function to verify that a string of parentheses is properly nested and closed — essentially checking for balance.
Unbalanced parentheses can result in errors in our coding endeavors, much like a misplaced or missing piece in a complex puzzle. Our function will be that of a diligent organizer, confirming that every opened parenthesis finds its rightful closure.
If we consider a simple way to approach this problem, we could initialize a counter variable for each type of bracket (parentheses, braces, and square brackets), increment the counters when we encounter an opening bracket, and decrement it when we get a closing bracket. Although this approach checks whether we have a closing bracket for every opening bracket, it completely misses one critical aspect - the order of brackets. For the brackets to be considered balanced, every closing bracket must correspond to the most recently opened bracket of the same type, which is not checked in this approach.
A stack data structure is an efficient way to solve this problem. The stack follows the LIFO (Last In, First Out) principle, which makes it highly suitable to track the opening and closing brackets' order, as the most recently opened bracket needs to be closed before we move on to the next opening bracket.
We create a dictionary that maps each opening bracket to its corresponding closing bracket and an empty stack. Then, we iterate over each character in the string: If a character is an opening bracket, it gets appended to the stack. If a character is a closing bracket and the top element in the stack is the corresponding opening bracket, we remove the top element from the stack.
If at any point we meet a closing bracket that doesn't match the top bracket in stack, we return false
.
First, let's introduce brackets mapping and set:
Java1import java.util.*; 2 3public class Main { 4 public static void main(String[] args) { 5 System.out.println(areBracketsBalanced("(){}[]")); // prints: true 6 } 7 8 public static boolean areBracketsBalanced(String inputStr) { 9 HashMap<Character, Character> bracketMap = new HashMap<>(); 10 bracketMap.put('(', ')'); 11 bracketMap.put('[', ']'); 12 bracketMap.put('{', '}'); 13 14 Set<Character> openPar = new HashSet<>(); 15 openPar.add('('); 16 openPar.add('['); 17 openPar.add('{'); 18 } 19}
Now, let's implement the solution loop:
Java1 for (int i = 0; i < inputStr.length(); i++) { 2 char character = inputStr.charAt(i); 3 if (openPar.contains(character)) { 4 stack.push(character); 5 } else if (!stack.isEmpty() && character == bracketMap.get(stack.peek())) { 6 stack.pop(); 7 } else { 8 return false; 9 } 10 } 11 return stack.isEmpty();
It returns false
in three cases:
Next, we will flip the script — quite literally — by reversing strings. It may seem straightforward, but it demonstrates the effective use of data structures in computation.
Imagine you're tasked with building a function in which a user can input a string, and you need to display the reversed string as part of the application features. Or, as a more advanced example, in computer networks, stack buffers are often used to reverse the order of packets that arrive out of order. Understanding how to reverse the order of elements using a Stack is a crucial skill.
Thanks to the stack's Last In First Out (LIFO) feature, it serves as an excellent tool to reverse elements' order. The strategy here is straightforward: push all the characters to a stack and then pop them out. As a result, we get the reversed string.
A stack inverts addition and removal sequences, much like pressing rewind on a video. Pushing items onto a stack and later popping them off effectively turns the sequence on its head, as if by magic.
Java1Stack<Character> stack = new Stack<>(); 2for (char c : str.toCharArray()) { 3 stack.push(c); 4} 5StringBuilder reversed = new StringBuilder(); 6while (!stack.isEmpty()) { 7 reversed.append(stack.pop()); 8} 9return reversed.toString();
The stack-based solution's effectiveness is apparent, with each operation's intent communicated. We build a reversed string efficiently and expressively by systematically stacking and then unstacking characters.
Today, you've tackled two classic problems using the stack, demonstrating its practical utility. The stack's LIFO nature has allowed us to ensure the correctness of nested structures and simplify sequences' reversal with straightforward and efficient code.
Well done on completing this lesson! The understanding you've gained is crucial for solving problems where the order of operations is paramount. Now, you're better prepared for real-world scenarios where data needs to be processed in reverse or verified for correctness.
Equipped with a deeper understanding of the stack's operations, you can confidently approach the exercises ahead. Happy coding!