本系列博客习题来自《算法(第四版)》,算是本人的读书笔记,如果有人在读这本书的,欢迎大家多多交流。为了方便讨论,本人新建了一个微信群(算法交流),想要加入的,请添加我的微信号:zhujinhui207407 谢谢。另外,本人的个人博客 http://www.kyson.cn 也在不停的更新中,欢迎一起讨论
知识点
- 下压栈的空间成本
题目
1.4.36 下压栈的空间成本。解释下表中的数据,它显示了各种下压栈实现的一般空间成本,其中链表的结点为一个静态的嵌套类,从而避免非静态嵌套类的开销。
1.4.36 Space usage for pushdown stacks. Justify the entries in the table below, which shows typical space usage for various pushdown stack implementations. Use a static nested class for linked-list nodes to avoid the non-static nested class overhead.
分析
明显可以看出使用基本类型比使用“装箱”类型占用更少的空间