E-COM-NET
首页
在线工具
Layui镜像站
SUI文档
联系我们
推荐频道
Java
PHP
C++
C
C#
Python
Ruby
go语言
Scala
Servlet
Vue
MySQL
NoSQL
Redis
CSS
Oracle
SQL Server
DB2
HBase
Http
HTML5
Spring
Ajax
Jquery
JavaScript
Json
XML
NodeJs
mybatis
Hibernate
算法
设计模式
shell
数据结构
大数据
JS
消息中间件
正则表达式
Tomcat
SQL
Nginx
Shiro
Maven
Linux
2386
掌握shell编程中数组的常见用法及示例
From:http://www.embeddedlinux.org.cn/html/jishuzixun/201211/19-
2386
.html给大家分享下数组的用法小例子,希望能给大家一点帮助。
JoeBlackzqq
·
2012-12-27 08:00
poj 1562 Oil Deposits
//和
2386
是一模一样的题目,当我在这题用c语言的输入的时候,就出错了,应该是有多个空格或者回车键在 //数据的后面,还是不是很懂c语言的输入,特需要注意!
yzl_rex
·
2012-09-02 08:00
poj
2386
Lake Counting
#include #include usingnamespacestd; constintMAX=110; charmatrix[MAX][MAX]; intn,m,vis[MAX][MAX],ans; //每一个点的八个方向坐标的增减! intdir[8][2]={{-1,-1},{-1,0},{-1,1},{0,-1},{0,1},{1,-1},{1,0},{1,1}}; //矩阵的输入 v
yzl_rex
·
2012-09-01 23:00
poj
2386
--图的遍历
poj
2386
--图的遍历题意描述:要求输出图中连通分支的个数。最简单的图遍历问题,题目虽然简单,却考察了最基本的遍历知识。
HooLee
·
2012-08-20 12:00
ZOJ
2386
今天最后一道题了,晚上要比赛,用了某大神的模板。加了个计数
ViewCode1#include 2#include 3#include 4#defineN500000 5 6inta[N],b[N]; 7longlongcount; 8voidmergearray(inta[],intfirst,intmid,intlast,inttemp[]) 9{ 10inti=first,j=mid+1; 11intm=mid,n=last;
·
2012-08-04 17:00
ZOJ
XenDesktop 5 如何使用Vmware vSphere5 虚拟化基础架构---http方式
Citrix官方建议采用HTTPS方式,具体配置方法见另外一篇文章http://vtech.blog.51cto.com/
2386
linklu
·
2012-03-31 12:37
vmware
http
sdk
vsphere
xendesktop
app2sd 与 A2SD+
下文来自: http://bbs.apksea.com/thread-
2386
-1-1.html --------------------------------------------------
tudusi
·
2012-03-29 10:00
APP
【ACM-POJ】poj
2386
,Lake Counting
#include #include //#defineDBG usingnamespacestd; constintMAXSIZE=10000; charmap[MAXSIZE][MAXSIZE]; intN,M; unsignedlongLakeCounts; booliFirstLake=true; booliCounted=true; voiddfs(intx,inty) { intm,n;
c0de4fun
·
2012-02-14 21:00
ini
include
poj 1979Red and Black(BFS DFS)
一道简单的搜索题,和poj
2386
差不多,DFS和BFS都可以,当然并查集也可以……RedandBlackTimeLimit: 1000MS MemoryLimit: 30000KTotalSubmissions
tanhaiyuan
·
2011-08-17 13:00
input
character
each
output
Numbers
poj
2386
Lake Counting(BFS搞定)
题目就不贴了;只不过,要注意将队列开大一点,我第一次开了500,结果RunTimeError了……我一狠心开了10000呵呵#include structNode { intx; inty; }queue[10000]; intN,M; charmap[101][101]; intvisited[101][101]={0}; intax[8]={-1,1,0,0,-1,1,-1,1};
tanhaiyuan
·
2011-08-17 10:00
poj
2386
Lake Counting(DFS, BFS)
今天看了下搜索,于是找了一道DFS题来做,看过别人代码后,自己写了一下,一次AC,也可用BFS……看了一下Discuss,发现还可以用并查集来做……LakeCountingTimeLimit: 1000MS MemoryLimit: 65536KTotalSubmissions: 12143 Accepted: 6228DescriptionDuetorecentrains,wate
tanhaiyuan
·
2011-08-16 22:00
Java Web服务: CXF性能比较
转载:http://gocom.cc/knowledge/soa/standard/
2386
.html Apache CXF Web服务栈建立在与本系列早期文章讨论的Apache
fainily
·
2011-08-15 09:00
Web
Android 成用户隐私安全问题严重
近日,移动安全服务企业网秦公司发布了《2011年第二季度全球Android手机安全报告》,据网秦“云安全”数据分析中心统计:2011年第二季度查杀到An-droid手机恶意软件及其变种达到了
2386
款(
ycbyte
·
2011-08-05 15:52
android
移动开发
安全
隐私
休闲
Android 成用户隐私安全问题严重
近日,移动安全服务企业网秦公司发布了《2011年第二季度全球Android手机安全报告》,据网秦“云安全”数据分析中心统计:2011年第二季度查杀到An-droid手机恶意软件及其变种达到了
2386
款(
ycbyte
·
2011-08-05 15:52
安全
移动开发
休闲
zoj
2386
|| poj 2299 Ultra-QuickSort
我晕,这个我没有写题解么。。忘了。。 求逆序数。。。 白皮书上有,用的归并排序,今天又看了算导的归并排序,写了下,过了。 因为这个题在树状数组的分类下的,所以尝试用树状数组做。想了会。。。 因为数的范围很大,不过个数只有50W,所以就排下序,重新编数,这个据说叫离散化==。。。 编数之后,求这个数之前比这个数大的,不过用树状数组的话求比它小的值是比较容易的,那么就把数离散化的时候从大到小排序,然后
zxy_snow
·
2011-03-17 23:00
POJ-
2386
-Lake Counting-解题报告
跟“红与黑”那道题很相似,都是用递归思想解决。这道也是自己独立解答出来的,一次就AC了,很有些成就感啊。 #includeusingnamespacestd;constintMAX_SIZE=100;/*表示田地的矩阵,全局数据*/charfield[MAX_SIZE][MAX_SIZE];intn,m;/*核心递归函数。*输入:矩阵坐标i,j。*输出:与该点相连的有几处"water",即该"p
lihao21
·
2011-01-22 19:00
output
poj
2386
——Lake Counting
题意:求给定的图中有几堆的"W"。 思路:深搜或广搜,随君便。 #include<iostream> #include<cstdio> #include<cstring> using namespace std; char map[105][105]; int dir[][2]={{-1,0},{1,0},{0,-1},{0,1},{-1
44424742
·
2010-12-27 17:00
J#
POJ
2386
Lake Counting 简单的DFS搜索
id=
2386
简单DFS搜索 Lake Counting Time Limit:1000MS Memory Limit:65536K Description Due
soboer
·
2010-12-23 11:00
count
POJ
2386
Lake Counting 简单的DFS搜索
id=
2386
简单DFS搜索LakeCountingTimeLimit: 1000MS MemoryLimit: 65536KDescriptionDuetorecentrains,waterhaspooledinvariousplacesinFarmerJohn'sfield
yming0221
·
2010-12-23 11:00
POJ
2386
Lake Counting 简单的DFS搜索
id=
2386
简单DFS搜索 Lake Counting Time Limit:1000MS Memory Limit:65536K Description Due
thecloud
·
2010-12-23 11:00
count
poj
2386
Lake Counting(DFS 杂这么多这种类型的水题啊。。。。)
同1562找有几个连通的区域,8个方向的搜索。 从昨晚开始做了好几道这种类型了,现在已经很熟练了哈~ #include#include#include#includeusingnamespacestd;intn,m;intmap[110][110],visit[110][110];intcou,fi,fj;intdir[16]={0,1,0,-1,1,0,-1,0,1,1,1,-1,-1,1,-1
zxy_snow
·
2010-10-18 12:00
poj
2386
poj
2386
DFS题目啊。看通过率就知道非常简单的。一下付代码,大家自己看下。
看海的小星
·
2010-08-18 19:00
HDU
2386
Dart Challenge题解动态规划DP
DartChallengeTimeLimit:4000/2000MS(Java/Others) MemoryLimit:32768/32768K(Java/Others)TotalSubmission(s):268 AcceptedSubmission(s):134ProblemDescriptionClarkandHarryaresiblings.Astheyhadbeenrival
power721
·
2010-08-13 19:00
exception
Excel
Integer
less
each
output
POJ_
2386
_Lake Counting
//简单的一道题,使用dfs和bfs都可以,当然使用bfs效率比较高,这里使用bfs实现//与1562差别不大#include#include#includeusingnamespacestd;charmap[105][105];boolvis[105][105];//保存访问过的节点//八个方向intdi[8][2]={-1,0,-1,1,0,1,1,1,1,0,1,-1,0,-1,-1,-1}
fengyu0556
·
2010-07-31 01:00
楚才作文获奖名单_第26届楚才作文获奖名单公布
二等奖1064名,三等奖
2386
名。 脑清新杯第24届武汉国际中小学生楚才作文竞赛获奖结果日前揭晓。
化蝶自在飞
·
2010-05-12 18:00
工作
教育
体育
出版
POJ
2386
Lake Counting (DFS)
DescriptionDuetorecentrains,waterhaspooledinvariousplacesinFarmerJohn'sfield,whichisrepresentedbyarectangleofNxM(1usingnamespacestd;constintMAX=110;charmap[MAX][MAX];intvis[MAX][MAX];voiddfs(intx,inty
chinaczy
·
2010-01-20 21:00
ACM
pku-
2386
BFS或者DFS的入门题目#include "stdio.h"char fi[105][105];int move[8][2]={0,1,1,1,1,0,1,-1,0,-1,-1,-1,-1,0,-1,1};int qu[10005][2];int head,tail;void begin(){ head=0; tail=-1;}void inq(int l,int c){ ++
算法与程序--游戏与玩乐
·
2008-06-08 15:00
诺基亚 8800 Sapphire Arte
诺基亚8800a综述报价参数图片用户评论评测行情下载参考报价:9800元 查看比较31家商家报价推荐星级:用户评论:8条评论关注指数:
2386
使用手册:在线浏览品牌资料:
futurehuhu
·
2008-06-01 21:00
sapphire
pku-
2386
搜索的入门题#include "stdio.h"char fi[105][105];int move[8][2]={0,1,1,1,1,0,1,-1,0,-1,-1,-1,-1,0,-1,1};int qu[10005][2];int head,tail;void begin(){ head=0; tail=-1;}void inq(int l,int c){ ++tail;
算法与程序--游戏与玩乐
·
2008-04-19 19:00
上一页
1
2
3
4
5
下一页
按字母分类:
A
B
C
D
E
F
G
H
I
J
K
L
M
N
O
P
Q
R
S
T
U
V
W
X
Y
Z
其他