摘要: https://en.wikipedia.org/wiki/Anti-pattern https://zh.wikipedia.org/wiki/反面模式 An anti-pattern is a common response to a recurring problem that is usua 阅读全文
posted @ 2016-11-04 19:59 papering 阅读(361) 评论(0) 推荐(0) 编辑
摘要: https://en.wikipedia.org/wiki/Overengineering Overengineering (or over-engineering) is the designing of a product to be more robust or complicated tha 阅读全文
posted @ 2016-11-04 19:49 papering 阅读(225) 评论(0) 推荐(0) 编辑
摘要: https://en.wikipedia.org/wiki/Hard_coding Considered an anti-pattern, hard coding requires the program's source code to be changed any time the input 阅读全文
posted @ 2016-11-04 19:35 papering 阅读(161) 评论(0) 推荐(0) 编辑
摘要: Metaheuristic 阅读全文
posted @ 2016-11-04 13:24 papering 阅读(147) 评论(0) 推荐(0) 编辑
摘要: THE ARCHITECTURE OF COMPLEXITY HERBERT A. SIMON* Professor of Administration, Carnegie Institute of Technology (Read April 26, 1962) 阅读全文
posted @ 2016-11-04 13:15 papering 阅读(149) 评论(0) 推荐(0) 编辑
摘要: https://en.wikipedia.org/wiki/Greedy_algorithm 阅读全文
posted @ 2016-11-04 12:57 papering 阅读(128) 评论(0) 推荐(0) 编辑
摘要: 大话数据结构 线性表 linear list n个数据元素的有限序列 线性链表:每个节点只包含一个指针域 循环链表 circular linked list O(1) 将2个线性表合并成一个表,仅需将一个表的表尾和另一个表的表头相接:仅需改变2个指针值即可。 双向链表 double linked l 阅读全文
posted @ 2016-11-04 12:52 papering 阅读(403) 评论(0) 推荐(0) 编辑