摘要:
如果一个系统有两个以上相互独立的抽象变化,就需要使用桥接模式了 抽象:不变的 实现:可变的 阅读全文
2016年5月31日
2016年5月25日
摘要:
简单工厂模式:最普通的工厂模式,使用一个上帝工厂,容易出现问题。 工厂模式:将上帝工厂抽象化,可生产一个产品租的产品 抽象工厂模式:可生产多个产品族的产品,但是具体的产品族难以扩充新的产品。 阅读全文
2015年12月1日
摘要:
Floyd's Cycle Detection Algorithmhttp://www.siafoo.net/algorithm/10改进版:http://www.siafoo.net/algorithm/11 阅读全文
摘要:
class Queue { stack input, output;public: void push(int x) { input.push(x); } void pop(void) { peek(); output.pop(); ... 阅读全文
2015年11月26日
摘要:
http://blog.csdn.net/hguisu/article/details/7776068 阅读全文
2015年1月28日
摘要:
Candela to lux calculation with distance in metersThe illuminanceEvin lux (lx) is equal to the luminous intensityIvin candela (cd),divided by the squa... 阅读全文
2015年1月25日
摘要:
MAX-HEAPPIFY (A,i) 将结点i替换三个结点(i是父结点并上其的子结点)中的最大值,当i是叶子结点是终止 阅读全文
2014年10月4日
2014年9月26日
摘要:
ptr_fun分类:C/C++2012-05-05 20:21593人阅读评论(0)收藏举报functionclassfunobjectreturningtypes目录(?)[-]Template parametersParametersReturn valueExample转自:http://ww... 阅读全文
2014年9月24日