Check if a character is balanced using Stacks in Java

Problem:

Write a java method that checks if a character is balanced using stacks.

Output:

Not applicable.

Solution:

import java.util.EmptyStackException;
import java.util.Scanner;
import java.util.Stack;

public class ParanChecker
{
  public static void main(String[] args)
  {
    //We assume that the Character is balanced from the beginning
    boolean balanced = true;
    
    String OPEN = "([{";
    String CLOSE = ")]}";
    
    Scanner scan = new Scanner(System.in);
    Stack <Character> s = new Stack<Character>();
    
    System.out.println("Enter your expression:");
    String expression = scan.nextLine();
    
    try 
    {
      int index = 0;
      
      while (balanced && index < expression.length())
      {
        char nextCh = expression.charAt(index);
        if ( OPEN.indexOf(nextCh) != -1 )
          s.push(nextCh);
        else if ( CLOSE.indexOf(nextCh) != -1)
        {
          char topCh = s.pop();
          balanced = (OPEN.indexOf(topCh) == CLOSE.indexOf(nextCh));
        }
      index++;    
      }
    }
    
    catch(EmptyStackException emptyStackException)
    {
      balanced = false;
    }
    
    if ( balanced && s.empty())
      System.out.println("The Character is balanced");
    else
      System.out.println("The Character is not balanced");
  }
}


No comments :

Post a Comment

Follow Me

If you like our content, feel free to follow me to stay updated.

Subscribe

Enter your email address:

We hate spam as much as you do.

Upload Material

Got an exam, project, tutorial video, exercise, solutions, unsolved problem, question, solution manual? We are open to any coding material. Why not upload?

Upload

Copyright © 2012 - 2014 Java Problems  --  About  --  Attribution  --  Privacy Policy  --  Terms of Use  --  Contact