TakeoffYoung

  博客园  :: 首页  :: 新随笔  :: 联系 :: 订阅 订阅  :: 管理

随笔分类 -  Program

Emotion
摘要:function library is divided into static library and dynamic library. ___ 0x00. static function library it was compiled into target file, so, its not n 阅读全文
posted @ 2016-04-02 16:03 TakeoffYoung 阅读(168) 评论(0) 推荐(0)

摘要:System directory === ___ directories under "/" /bin/: to store user command, a little similar with /usr/bin/ /sbin/: for system command, a little simi 阅读全文
posted @ 2016-04-02 15:09 TakeoffYoung 阅读(145) 评论(0) 推荐(0)

摘要:1.优化算法时间复杂度算法的时间复杂度对程序的执行效率影响最大,在Python中可以通过选择合适的数据结构来优化时间复杂度,如list和set查找某一个元素的时间复杂度分别是O(n)和O(1)。不同的场景有不同的优化方式,总得来说,一般有分治,分支界限,贪心,动态规划等思想。2.减少冗余数据如用上三... 阅读全文
posted @ 2014-11-16 22:22 TakeoffYoung 阅读(707) 评论(0) 推荐(0)