摘要:
/* * BinarySearch.c * * Created on: 2014年6月25日 * Author: wenbo */#include int binarySearch(int arr[],int num,int length){ int l = 0,u = length-1... 阅读全文
摘要:
声明:本博客欢迎转发,但请保留原作者信息!博客地址:http://blog.csdn.net/halcyonbaby内容系本人学习、研究和总结。如有雷同,实属荣幸!安装执行create-stack-user.sh脚本时,当前文件夹不要是devstack安装时假设提示pbr版本号不正确执行pip in... 阅读全文
摘要:
说到设计模式。自然少不了简单工厂模式。工厂方法和抽象工厂这三姐妹。它们之间可谓是各有所长,术业专攻啊!这篇博客来简单的梳理一下三者之间的关系。那么工厂又是什么意思呢?结合三者的特点,我觉得能够这样理解:工厂能够看做一个特殊的类,在这个类中专门负责生产一系列产品(对象)的一个集合就能够成为工厂。那么... 阅读全文
摘要:
点击打开链接无向图点双联通。二分图判定#include #include #include #include #include using namespace std;struct Edge{ int u, v;};const int maxn = 1005;int pre[maxn], is... 阅读全文
摘要:
B -Popular CowsTime Limit:2000MSMemory Limit:65536KB64bit IO Format:%I64d & %I64uSubmitStatusDescriptionEvery cow's dream is to become the most popula... 阅读全文