摘要:function library is divided into static library and dynamic library. ___ 0x00. static function library it was compiled into target file, so, its not n
阅读全文
随笔分类 - 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
阅读全文
摘要:System directory === ___ directories under "/" /bin/: to store user command, a little similar with /usr/bin/ /sbin/: for system command, a little simi
阅读全文
摘要:1.优化算法时间复杂度算法的时间复杂度对程序的执行效率影响最大,在Python中可以通过选择合适的数据结构来优化时间复杂度,如list和set查找某一个元素的时间复杂度分别是O(n)和O(1)。不同的场景有不同的优化方式,总得来说,一般有分治,分支界限,贪心,动态规划等思想。2.减少冗余数据如用上三...
阅读全文
|