Leetcode 241. 爲運算表達式設計優先級

假設每個符號爲最後一步,若沒有符號,只需返回字符串對應的數便可 【如2*3-4*5】 (2)*(3-4*5)、(2*3)-(4*5)、(2*3-4)*5web class Solution { public: int calcu(char e,int a,int b){ switch(e){ case '+': return a+b;
相關文章
相關標籤/搜索