码迷,mamicode.com
首页 >  
搜索关键字:visit    ( 1001个结果
开始了 新的 ACM 搜索!
希望 现在 到 暑假 做够100到搜索题!hdu1010#include #include using namespace std;int vis[10][10];char mat[10][10];int ok,T,M,N;void visit(int i,int j,int cur){ if(cu...
分类:其他好文   时间:2015-06-16 14:28:54    阅读次数:158
[LeetCode] Longest Consecutive Sequence
This problem is not very intuitive at first glance. However, the final idea should be very self-explanatory. You visit each element in nums, and then ...
分类:其他好文   时间:2015-06-12 19:10:09    阅读次数:103
RS查询报错之递归公用表表达式不包含顶级 UNION ALL运算符
在FM里面涉及模型的时候,修改了物理层的查询SQL如下select * from TARGET_VISIT_GH where ghksdm in(select dept_id from DIM_BI_DEPT_ROLE where #sq(CAMIDList())# like '%g:cn='...
分类:其他好文   时间:2015-06-09 11:13:02    阅读次数:1327
BFS广度优先遍历
队列实现广度优先遍历#include #include using namespace std;int visit[5]={0};typedef struct { char vexs[5]; int AdjMatrix[5][5]; int vexnum;...
分类:其他好文   时间:2015-06-03 17:34:30    阅读次数:124
List::traverse遍历
声明:// 遍历 void traverse(void (*)(T&)); //遍历,依次实施visit操作(函数指针,只读或局部性修改) template //操作器 void traverse(VST&); //遍历,依次实施visit操作(函数对象,可全局性修改)定义:template void List::tra...
分类:其他好文   时间:2015-05-28 23:10:57    阅读次数:386
访问者设计模式
访问者设计模式1.在”element“里面添加一个accept(Visitor)方法2、创建一个”visitor”基类 ,并且为每一个”element创建一个visit()方法。3、创建一个visitor的派生类然后执行相应的”elements”操作。4、客户端创建”visitor”对象并且根据传入...
分类:其他好文   时间:2015-05-24 12:47:43    阅读次数:122
hdu 1455 hdu 1455 Sticks
思路还是很简单的,不过关键在于剪枝,用了几个不强力的剪枝,飘过~~~998ms #include #include #include #define maxn 65+5 using namespace std; int maxx,n,m,flag,l; int mapp[maxn]; int visit[maxn]; bool cmp(int x,int y) { return x>y;...
分类:其他好文   时间:2015-05-23 18:27:41    阅读次数:109
hdu 1269 迷宫城堡
从一个点正向访问的所有的点,也能从这个点反向访问到所有的点,则yes,否则no; #include #include #include #define maxn 100000+5 using namespace std; int n,m; vectorzh[maxn]; vectorfa[maxn]; int visit[10000+5]; int sum1,sum2; void dfsz(in...
分类:其他好文   时间:2015-05-23 18:27:24    阅读次数:110
__BFS(POJ3126)
简单bfs,处理的时候,用的Map没过,看来这个题得好好考虑考虑时间复杂度了#include#include#include #includeusing namespace std;int visit[10010];int visit2 [10010];int prim(int x){ ...
分类:其他好文   时间:2015-05-22 13:24:54    阅读次数:114
hdu 1983 Kaitou Kid - The Phantom Thief (2)
bfs+dfs很有意思也很好的一道题 然而我用了很久才ac #include #include #include using namespace std; char mapp[10][10]; int visit[10][10]; int dir[4][2]={{0,1},{0,-1},{1,0},{-1,0}}; int n,m,o; int sx,sy,ex,ey; int flag; s...
分类:其他好文   时间:2015-05-22 09:44:56    阅读次数:115
1001条   上一页 1 ... 79 80 81 82 83 ... 101 下一页
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!