摘要: 1、Definition A stack is a list with restriction that insertions and deletions can be performed in only one position, namely, the end of the list, call 阅读全文
posted @ 2016-09-21 15:24 KennyRom 阅读(229) 评论(0) 推荐(0) 编辑
摘要: assert是定义在头文件cassert中的宏 其作用是如果他的返回值不为真则终止程序。 assert(expression); if 为假,先向stderr打印一条错误信息,再用abort终止程序 缺点:频繁调用影响程序性能,增加程序开销。 可在调用cassert后,用#define NDEBUG 阅读全文
posted @ 2016-09-21 07:45 KennyRom 阅读(632) 评论(0) 推荐(0) 编辑