摘要: python3.13字节码特化的简单讨论 前置阅读 有关Faster-Python的总结 from miaomiao's blog Python字节码DSL规则 python bytecode interpreter说明 要点 Python字节码DSL规则 在DSL的语法规则当中,有这样一条: st 阅读全文
posted @ 2025-01-23 16:59 Gold_stein 阅读(29) 评论(0) 推荐(0)
摘要: leetcode155.最小栈 思路 用两个栈,一个用来存本身,一个用来存最小值。 代码 #include <iostream> #include <memory> #include <stack> class MinStack { public: MinStack() {} void push(i 阅读全文
posted @ 2025-01-23 10:50 Gold_stein 阅读(12) 评论(0) 推荐(0)