猿辅导20210731编程题第二道

import java.util.*;
public class Main {
	public static void main(String[] args) {
		String s = "[][][[[]3[]2]2]2";
		int res=0;
		Stack<Integer> st =new Stack<>();
		for(int i=0;i<s.length();i++){
			if(s.charAt(i)=='['){
				st.push(0);
			}
			else if(s.charAt(i)==']'){
				int temp=1;
				while(st.peek()!=0) temp+=st.pop();
				st.pop();
				if(i+1<s.length()&&Character.isDigit(s.charAt(i+1))){
					temp=temp*(s.charAt(i+1)-'0');
					st.push(temp);
				}
				else{
					st.push(temp);
				}
			}
			else continue;
		}
		while(!st.isEmpty()) res+=st.pop();
		System.out.println(res);
	}
}

#猿辅导笔试讨论##猿辅导##笔经#
全部评论

相关推荐

2024-12-07 21:27
重庆邮电大学 Java
疯狂学习a:好看,想要,我是学生能送我么😋
投递大疆等公司8个岗位
点赞 评论 收藏
分享
2024-12-28 20:22
西安交通大学 Java
携程 酒店部门 25*15,留学生补贴 计算机科班
点赞 评论 收藏
分享
评论
1
1
分享
牛客网
牛客企业服务