码迷,mamicode.com
首页 >  
搜索关键字:visit    ( 1001个结果
Install tomcat 7.0.42 in ubuntu
fromehttp://askubuntu.com/questions/339169/how-to-install-tomcat-7-0-42-on-ubuntu-12-04-3-ltsNote: visit this question if you want to know why it's no...
分类:系统相关   时间:2014-10-12 16:45:38    阅读次数:296
POJ1469 COURSES 【二分图最大匹配·HK算法】
COURSES Time Limit: 1000MS   Memory Limit: 10000K Total Submissions: 17777   Accepted: 7007 Description Consider a group of N students and P courses. Each student visit...
分类:编程语言   时间:2014-10-10 23:42:24    阅读次数:331
【裸最小生成树】 模板 poj 1258
#include#include#include#include#define MAX 102void read();using namespace std;int map[MAX][MAX],best[MAX],n;bool visit[MAX];int main(){ //freopen(...
分类:其他好文   时间:2014-10-10 12:47:34    阅读次数:172
【二分图】 poj 1466
#include #include #include using namespace std;int c;const int maxn=502;int visit[maxn],map[maxn][maxn],link[maxn];bool DFS(int a){ for(int i=0;i> ...
分类:其他好文   时间:2014-10-10 11:48:04    阅读次数:132
将二叉树转换成双向链表
思路:采用中序遍历的方法,visit函数需要完成的功能为: 1、当前节点的左子节点指向上一次访问的节点; 2、将上一次访问节点的右子节点指向当前节点; 3、最后更新上一次访问节点为当前节点。 在第二步时需要判断上一次访问节点是不是为NULL,如果是,则第二步改为链表的头结点指向当前节点。 程序如下: struct BSTnode { int data; BSTnode * left...
分类:其他好文   时间:2014-10-07 13:20:23    阅读次数:136
POJ2135 Farm Tour 【最小费用最大流】
Farm Tour Time Limit: 1000MS   Memory Limit: 65536K Total Submissions: 11782   Accepted: 4393 Description When FJ's friends visit him on the farm, he likes to show them...
分类:其他好文   时间:2014-10-04 16:41:56    阅读次数:364
Visit   ----.php
localhttp://localhost/----.phphttp://127.0.0.1/----.phplocalorLANhttp://computername/----.phpInternetuserhttp://IPadress/----.phphttp://computerrealmname/----.php
分类:Web程序   时间:2014-10-03 01:40:04    阅读次数:175
WebCollector内核解析—如何设计一个爬虫
本文利用WebCollector内核的解析,来描述如何设计一个网络爬虫。 WebCollector使用了Nutch的爬取逻辑(分层广度遍历),Crawler4j的的用户接口(覆盖visit方法,定义用户操作),以及一套自己的插件机制,设计了一套爬虫内核。...
分类:Web程序   时间:2014-09-27 13:36:09    阅读次数:687
HDU1010 dfs + 剪枝
题目大意:找到一条路到终点的时候的时候正好与给出时间相同,每次移动一个单位都增加一分钟,不能走回头路。dfs搜索,每次经过一个位置,将visit[x][y] 设为1,表示已访问,记得回溯的时候重新将visit改为0;这道题很容易TLE,所以要注重剪枝,把所有能退出dfs递归的条件全列举清楚设置一个f...
分类:其他好文   时间:2014-09-26 00:07:38    阅读次数:274
NYOJ 236 心急的C小加
这个可以用排序来做,先排重量, 再来排长度,然后最后就是要统计分成条链就行了,也就是被机器处理几次,下面是代码的实现 1 #include 2 #include 3 4 typedef struct stick{/*其中l为length, w为weight,visit为标记当前组是否已被排列出...
分类:其他好文   时间:2014-09-25 17:50:17    阅读次数:249
1001条   上一页 1 ... 92 93 94 95 96 ... 101 下一页
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!