码迷,mamicode.com
首页 >  
搜索关键字:visit    ( 1001个结果
HTML 语法 整理,供查阅
This is a link 始终为属性值加引号 属性值应该始终被包括在引号内。双引号是最常用的,不过使用单引号也没有问题。 在某些个别的情况下,比如属性值本身就含有双引号,那么您必须使用单引号,例如: name='Bill "HelloWorld" Gates' target="_blank">Visit W3...
分类:Web程序   时间:2015-01-13 14:28:09    阅读次数:171
NGINX配置小随笔
达到以下效果:1,特定目录被指定IP访问2,不是指定的IP地址不能执行URI中特定字符串3,特定目录中不能执行PHP文件set $self_visit ''; if ( $request_uri ~* "XXFILE" ) { set $self_visit "${self_vi...
分类:其他好文   时间:2015-01-06 13:22:46    阅读次数:211
[LeetCode]79 Word Search
https://oj.leetcode.com/problems/word-search/http://blog.csdn.net/linhuanmars/article/details/24336987publicclassSolution{ publicbooleanexist(char[][]board,Stringword) { Map<Character,List<P>>map=buildMap(board); booleanr=visit(map,word.toCharAr..
分类:其他好文   时间:2015-01-04 19:33:20    阅读次数:146
Twitter OA prepare: Visit element of the array
A zero-indexed array A consisting of N integers is viven. We visit the indexs of the array in the following way. In the first step we visit the index ...
分类:其他好文   时间:2015-01-04 06:23:47    阅读次数:206
关节点算法
1 #include 2 #include 3 #include 4 #include 5 6 using namespace std; 7 #define MAXN 1000 8 int low[MAXN],visit[MAXN]; // low[i] = min(visit[i],v...
分类:编程语言   时间:2015-01-03 17:12:32    阅读次数:180
Graph
public class Graph{ public void dfs(Vertex u) { u.visit(); u.visited = true; for(each v such that (u,v) belongs E) { if(!v.visited)...
分类:其他好文   时间:2014-12-28 10:21:32    阅读次数:171
UVA OJ Bicoloring 10004
/*这题后面那个visit的判断有点浪费时间。没有优化好。。后来看了飞神的解题报告,在DFS算法中进行优化for(i=0; i<n; i++)     {         if(!color[i]&&map[x][i])         {             color[i]=-color[x];             if(dfs(i,n))                 ...
分类:其他好文   时间:2014-12-25 23:43:42    阅读次数:435
ios项目开发— iOS8 定位功能API改变
iOS8 定位新增功能 一、 Core Location framework的变化主要有以下几点: 1.在定位状态中引入Always和WhenInUse的概念。 2.加入Visit monitoring的特性,这类特性特别适合旅行类别的应用,当用户到达某个指定的区域内,monitor开始...
分类:移动开发   时间:2014-12-24 13:14:08    阅读次数:363
SDUT OJ 2140 图结构练习——判断给定图是否存在合法拓扑序列
#include #include using namespace std; int tp[11][11],visit[11]; int main() { int n,m,i,j,k,s,o,c; int flag,count,a,b; while(cin>>n>>m) { s=1; o=0; count=0; memset(tp,0,sizeof(tp)); m...
分类:其他好文   时间:2014-12-20 23:30:09    阅读次数:216
SDUT OJ 2449 走迷宫
#include using namespace std; int visit[10][10],a[10][10]; int n,m; int k; void dfs(int x,int y) { if(xn-1||ym-1||visit[x][y]||a[x][y]) return; if(x==n-1 && y==m-1) { k++; return ; } else ...
分类:其他好文   时间:2014-12-20 23:29:37    阅读次数:281
1001条   上一页 1 ... 88 89 90 91 92 ... 101 下一页
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!