摘要: public class RemoveOutermostParentheses { /* 解法一:栈,( 进栈,) 出栈,栈为空时,则找到原语,然后去括号。 */ public String removeOuterParentheses(String S) { StringBuilder sb=new StringBuilder(); ... 阅读全文
posted @ 2019-09-23 14:48 张玉昊 阅读(226) 评论(0) 推荐(0) 编辑