Studying¶
From hash tables to dictionaries:
the missing part of SICP
笔者在研读 Dictionaries and Python OOP 的时候意识到自己对 Python 字典的实现了解不够,便在这一方向进行了深入探索。
我们的 SICP 课程没有涉及这一数据结构,我相信也有其他学习者想要深入了解字典的实现原理;因此我不妨写一份讲义,来系统地讲解 Python 字典的设计思想,希望后来者也能少走一些弯路。
Fix semicolon parsing logic within comments in SICP's sqlite_shell.py
SICP 的 sqlite_shell.py 非常神奇的无法处理 /* */ 中的 ;,会产生报错:
sqlite> /*;*/;
near "*": syntax error
Organized notes of MIT 18.01SC
Description:
An archive of MIT 18.01SC Single Variable Calculus Fall 2010 with organized notes, problem sets and exams.