6.括号问题

来源:互联网 发布:netstat windows 编辑:程序博客网 时间:2024/06/15 04:29

下面的代码用于判断一个串中的括号是否匹配所谓匹配是指不同类型的括号必须左右呼应,可以相互包含,但不能交叉

例如:

..(..[..]..)..  是允许的

..(...[...)....].... 是禁止的

对于 main 方法中的测试用例,应该输出:

false

true

false

false

请分析代码逻辑,并推测划线处的代码。

答案写在解答.txt”文件中

注意:只写划线处应该填的内容,划线前后的内容不要抄写。



public class Main{

static boolean isGoodBracket(String s){

Stack<Character> stack=new Stack<Character>();

for(int i=0;i<s.length();i++){

char c=s.charAt(i);

///////存对应的括号  good

if(c=='(')

stack.push(')');

if(c=='[')

stack.push(']');

if(c=='{')

stack.push('}');

if(c==')' || c==']' || c=='}'){

if(stack.size()==0)

return false;

if(stack.pop()!=c)

return false;

}

}

if(stack.size()!=0)

return false;

return true;

}

public static void main(String[] args) {

System.out.println(isGoodBracket("...(..[.)..].{.(..).}..."));

System.out.println(isGoodBracket("...(..[...].(.).).{.(..).}..."));

System.out.println(isGoodBracket(".....[...].(.).){.(..).}..."));

System.out.println(isGoodBracket("...(..[...].(.).){.(..)...."));


}

}

原创粉丝点击