1. float f = 1/10在计算机中是怎样被存储和近似的? 32bits中最近的那一个?
2. http://en.wikipedia.org/wiki/Virtual_method_table 里面
virtual method table of D (for B2):
+8: D::f2() // B2::f2() is overridden by D::f2()
为什么这地址是+8而不是0?
3. Implement a buddy bitmap with APIs for setting and unsetting bits in the
bitmap 这道题思路是怎样的?有什么tricky的地方吗?