10 2017 档案

布尔表达式删除某个元素
摘要:def parse(terms, i, ts): s = [] while i < len(terms): t = terms[i] if t == '(': if len(s): ts.extend(s) s = [] child, i = parse(terms, i + 1, []) ts.a 阅读全文

posted @ 2017-10-31 08:23 学而知之者 阅读(234) 评论(0) 推荐(0)