码迷,mamicode.com
首页 >  
搜索关键字:lo    ( 2279个结果
Vector::find、search查找
无序向量区间查找:template //无序向量的顺序查找:返回最后一个元素e的位置;失败时,返回lo - 1 Rank Vector::find(T const & e, Rank lo, Rank hi) const { //assert: 0 <= lo < hi <= _size while ((lo < hi--) && (e != _elem[hi]...
分类:其他好文   时间:2015-05-25 16:40:15    阅读次数:495
CentOS-6.3安装配置SVN
安装说明系统环境:CentOS-6.3 安装方式:yum install (源码安装容易产生版本兼容的问题)安装软件:系统自动下载SVN软件检查已安装版本 #检查是否安装了低版本的SVN [root@localhost /]# rpm -qa subversion#卸载旧版本SVN [root@lo...
分类:其他好文   时间:2015-05-25 16:08:23    阅读次数:172
湖南多校对抗赛(2015.05.24)部分解题报告(CSU1628-1638)
比赛网址 A:简单题 AC代码: #include #include #include #include #include #include #include using namespace std; int a[105]; int main() { #ifndef ONLINE_JUDGE freopen("in.cpp","r",stdin); #endif //...
分类:其他好文   时间:2015-05-25 11:28:35    阅读次数:221
Vector::sort
template void Vector::sort(Rank lo, Rank hi) { //向量区间[lo, hi)排序 switch (rand() % 5) { //随机选取排序算法。可根据具体问题的特点灵活选取或扩充 case 1: bubbleSort(lo, hi); break; //起泡排序 case 2: sel...
分类:其他好文   时间:2015-05-25 10:10:01    阅读次数:124
POJ - 1426 - Find The Multiple (DFS)
题目传送:Find The Multiple 思路:DFS AC代码: #include #include #include #include #include #include #include #include #include #include #include #include #include #include #define LL lo...
分类:其他好文   时间:2015-05-25 10:01:53    阅读次数:123
好用的curl类
set_action("login", $loginurl, $refer);$postdata = array("username"=>"fortest", "password"=>"12345");$ch->open()->get_cookie($this->_cookie)->get("lo....
分类:Web程序   时间:2015-05-24 00:07:09    阅读次数:189
Time Consume Problem
I joined the NodeJS online Course three weeks ago, but now I'm late about 2 weeks.I pay the codeschool yearly subscribed, but I have lost the track lo...
分类:其他好文   时间:2015-05-23 12:41:39    阅读次数:107
转载:深入探讨Java类加载器
来源:http://www.ibm.com/developerworks/cn/java/j-lo-classloader/类加载器(class loader)是 Java?中的一个很重要的概念。类加载器负责加载 Java 类的字节代码到 Java 虚拟机中。本文首先详细介绍了 Java 类加载器的...
分类:编程语言   时间:2015-05-22 23:46:28    阅读次数:186
LoadRunner性能测试工具---(一)使用流程
LoadRunner,是一种预测系统行为和性能的负载测试工具。通过以模拟上千万用户实施并发负载及实时性能监测的方式来确认和查找问题,LoadRunner能够对整个企业架构进行测试。企业使用LoadRunner能最大限度地缩短测试时间,优化性能和加速应用系统的发布周期。             LoadRunner可适用于各种体系架构的自动负载测试,能预测系统行为并评估系统性能。     Lo...
分类:其他好文   时间:2015-05-21 22:36:58    阅读次数:220
FATAL ERROR: Could not find ./bin/my_print_defaults 解决方法
FATAL ERROR: Could not find ./bin/my_print_defaultsIf you compiled from source, you need to run 'make install' tocopy the software into the correct lo...
分类:其他好文   时间:2015-05-21 12:21:41    阅读次数:245
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!