CSDN每日一练_1(20220212)有效的括号

 
package day04.first;

import java.util.Stack;

public class Solution {
public static void main(String[] args) {
String str = "(124546{[})";
boolean a = isValid(str);
System.out.println(a);
}

public static boolean isValid (String s){

//定义左括号和右边的括号
char [] parentheses = { '(' , '[' , '{' , ')' , ']' , '}'} ;
int i= 0 ;
char c ;
int [] sum = {0,0,0};
Stack stack = new Stack<>();

CSDN每日一练_1(20220212)有效的括号最先出现在Python成神之路

版权声明:
作者:siwei
链接:https://www.techfm.club/p/18942.html
来源:TechFM
文章版权归作者所有,未经允许请勿转载。

THE END
分享
二维码
< <上一篇
下一篇>>