括号配对问题
时间限制:3000 ms | 内存限制:65535 KB
难度:3
描述
现在,有一行括号序列,请你检查这行括号是否配对。
输入
第一行输入一个数N(0< N<=100),表示有N组测试数据。后面的N行输入多组输入数据,每组输入数据都是一个字符串S(S的长度小于10000,且S不是空串),测试数据组数少于5组。数据保证S中只含有”[“,”]”,”(“,”)”四种字符
输出
每组输入数据的输出占一行,如果该字符串中所含的括号是配对的,则输出Yes,如果不配对则输出No
样例输出
No
No
Yes
import java.util.Scanner;
public class KuoHaoPeiDui {
static String result[]; // 存储答案
static String answer[] = {"Yes", "No"};
public static void main(String[] args) {
run();
for (int i = 0; i < result.length; i++)
System.out.println(result[i]);
}
static void run(){
Scanner sc = new Scanner(System.in);
result = new String[sc.nextInt()];
sc.nextLine();
for (int i = 0; i < result.length; i++) {
String temp = sc.nextLine();
int n[] = new int[temp.length()];
// 长度为奇数,直接"No"
if(temp.length()%2!=0) result[i] = answer[1];
// 长度为偶数,将"(、[、)、]"分别用数字-1、-2、1、2表示
else{
// 依次遍历字符串,对每个字符进行处理,pos做数组n的位置指针
for (int j = 0, pos = 0; j < temp.length(); j++) {
String t = temp.substring(j, j+1); // 获取第j个字符
// 若为"(、["将其赋值到数组n中,对应-1、-2
if(t.equals("(")){ n[pos]=-1; pos++; continue;}
if(t.equals("[")){ n[pos]=-2; pos++; continue;}
// 若为")、]",则判断n的前一位是否与其配对(相加为0),若不为0,直接"No"
if(pos>0 && t.equals(")") && n[pos-1]+1==0){n[--pos]=0;}
else if(pos>0 && t.equals("]") && n[pos-1]+2==0){n[--pos]=0;}
else{result[i] = answer[1]; break;}
}
// 未得出"No"的结果为"Yes"
if(result[i]==null) result[i] = answer[0];
}
}
sc.close();
}
}
运行结果
输出:
No
No
Yes
Yes
No