【leetcode】227(Medium)Basic Calculator II

解題思路 還是用棧 提交代碼 class Solution { public int calculate(String s) { int res=0,p=0,num=0,tmp=0,flag=1; Stack<Integer> stack=new Stack<Integer>(); while(p<s.length()) { if(s.
相關文章
相關標籤/搜索