我想编写一个程序,以便能够从标准输入接收字符串并检查匹配的括号。这是我的堆栈代码:
public interface Stack<E>{
public int size();
public boolean isEmpty();
public E top();
public void push(E element);
public E pop()throws EmptyStackException;
}
这是一个名为 MyStack 的类,它实现了堆栈:
public class myStack<E> implements Stack<E>{
private final E s[];
int t=0;
public myStack() {
this.s = (E[]) new Object[100];
}
public int size(){
return t;
}
public boolean isEmpty(){
switch(size()){
case 0:
return true;
}
return false;
}
public E top() {
if(isEmpty())
throw new EmptyStackException();
return s[t-1];
}
public void push(E element) {
if(isEmpty())
s[0]= element;
else
s[t]= element;
t++;
}
public E pop() {
E x;
if(isEmpty())
throw new EmptyStackException();
else{
x = s[t-1];
s[t-1] = null;
t--;
}
return x;
}
}
这是主要的:
public static void main(String[] args) {
Stack<String> st=new myStack<>();
Scanner s = new Scanner(System.in);
String str;
str = s.nextLine();
for(int i=0;i<str.length();i++)
{
if((str.charAt(i)=='{')||(str.charAt(i)=='(')||(str.charAt(i)=='['))
{
st.push(str.charAt(i));
}
else if((str.charAt(i)=='}')||(str.charAt(i)==')')||(str.charAt(i)==']'))
if((st.top()==str.charAt(i)))
st.pop();
else
{
System.out.println("Error");
System.exit(0);
}
}
if(st.isEmpty())
System.out.println("True");
else
System.out.println("True");
}
但是主要代码在这些行中有错误: st.push(str.charAt(i));
And if((st.top()==str.charAt(i)))
. 错误是关于将字符转换为字符串。
任何人都可以帮我解决这些问题吗?
抱歉,我知道这么长的代码很无聊,但我真的需要解决这个问题
提前感谢您的关注