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
HDU4035:Maze
加中实训(1)
#include"StdAfx.h" #include"Function.h" voidMaze::SetMap(int(*map)[WIDETH])//定义
Maze
类中的SetMap函数 { Judger
KarlDoenitz
·
2012-05-25 23:00
null
include
链栈和递归实现迷宫算法
================= classCoordinate { friendclassNode; friendclassLinkStack; friendboolmazePath(char**
maze
唐朝书生
·
2012-04-28 20:00
递归
迷宫
链栈
USACO 4.1 Fence Loops 最小环
N #include constintinf=(1fb){ p[fa]=fb; } elseif(fadis[i][j]+
maze
[k][i]+
maze
[k][j]){ _min=dis[i][j]+
maze
ivan_zjj
·
2012-04-26 23:00
POJ 3026--Borg
Maze
(BFS+Prim)
BorgMazeTimeLimit:1000MS MemoryLimit:65536KTotalSubmissions:5258 Accepted:1756DescriptionTheBorgisanimmenselypowerfulraceofenhancedhumanoidsfromthedeltaquadrantofthegalaxy.TheBorgcollectiveisthetermus
wugj03
·
2012-04-15 12:00
【Tree】迷宫生成算法
参考维基百科http://en.wikipedia.org/wiki/
Maze
_generation_algorithm1深度优先搜索Startataparticularcellandcallitthe"exit
visayafan
·
2012-04-11 23:00
回溯法应用之迷宫问题
java.util.Iterator; import 数据结构及算法.回溯法.Application; import 数据结构及算法.回溯法.Position; public class
Maze
fengzhenbing98
·
2012-03-30 01:00
java
算法
application
C++利用队列(Queue)求解迷宫(
Maze
)中指定起点和终点间是否有最短路径,如果有的话输出所需步数,如果没有输出
#include#includeclassMaze{public: classPoint{ public: Point():i(0),j(0){} Point(intx,inty):i(x),j(y){} Point(Point&x){ i=x.i; j=x.j; } ~Point(){} public: voidSet(intx,inty){ i=x; j=y; }
fengzhishang2019
·
2012-03-23 23:00
C++
null
Class
Path
include
Matrix
Java堆栈实现迷宫求解
public class
Maze
{ static int[][] dedale={ //用二维数组表示地图  
东方上人
·
2012-03-05 14:00
java
数据结构学习笔记 --- 栈的应用举例
if0 #defineMAZE_COLUMN7//迷宫的列数 #defineMAZE_ROW7//迷宫的行数 //在二维阵列中使用2表示迷宫墙壁,使用0来表示老鼠的行走路径 intm[
MAZE
_ROW
whz_zb
·
2012-02-12 10:00
数据结构
c
算法
struct
存储
Path
[U]Overfencing
简单DP/* ID:sevenst4; LANG:C++ PROG:
maze
1 */ #include usingnamespacestd; charm[222][88]; inthi[101][40
sevenster
·
2012-02-10 16:00
784 -
Maze
Exploration
/* 简单题,一次AC 走迷宫问题,深度优先搜索 题意:从*开始走将与之相连的房间里的字符设置成# */ #include #include charG[35][85]; intn; intdir[4][2]={{0,-1},{0,1},{-1,0},{1,0}}; boolcheck(intx,inty) { boolok=true; if(xn-1||y=strlen(G[x])) ok
lhshaoren
·
2012-02-07 23:00
POJ 2935 Basic Wall
Maze
BFS
注意墙的处理,我是这么做的,把每个方块不能行走的方向标记出来,剩他的就是传统BFS了。 #include<stdio.h> #include<queue> using namespace std; int sx,sy,ex,ey; int h[4]={1,-1,0,0}; int g[4]={0,0,1,-1}; int dir[8][8][5]; bool visit[7
izuoyan
·
2012-01-14 13:00
poj
Uva 705 - Slash
Maze
Uva705-SlashMaze题目链接:http://uva.onlinejudge.org/index.php?option=com_onlinejudge&Itemid=8&category=105&page=show_problem&problem=646先将每个格子划分为3*3的小格,斜杠占据的小格标记为1,其它的为0。然后遍历即可。#include #include int row,
寒月
·
2012-01-03 14:00
迷宫(多出口)
=================================================================================== * * Filename:
maze
.c
wangran51
·
2011-12-10 12:00
迷宫(多出口)
===================================================================================== * * Filename:
maze
.c
vergilwang
·
2011-12-10 12:00
迷宫
最短路径JS版
functionGMaze(
maze
){ //数组对象,存放迷宫数组 this.MazeSource=
maze
; //实例变量 this.Passage=0;//可以走的路 this.Wall=1;//
diandian82
·
2011-12-06 18:00
function
String
null
Class
poj 3083dfs+bfs问题
题意:给你一个h * w的迷宫,其中有一句话需要注意一下“ Exactly one 'S' and one 'E' will be present in the
maze
, and they will
cavenkaka
·
2011-11-21 21:00
poj
USACO 2.4 Overfencing
USACO2.4Overfencing/*ID:lvxiaol3LANG:C++TASK:
maze
1*/#include#include#includeusingnamespacestd;#defineMAXWID38
O(1) 的小乐
·
2011-10-31 20:00
Amazed游戏学习二 坐标的分析
下面是
Maze
迷宫的坐标计算//mazeleveldata privatestaticint[]mMazeData;这个一维数组存放所有的tile的类型//mazetilesizeanddimension
GaoMatrix
·
2011-10-20 13:00
HDU Random
Maze
(欧拉路、费用流)
题意:花最小的费用进行删边操作使图变为欧拉路题解:模仿混合图欧拉路的构图方法,不过TLE了,看了网上说是SPFA问题,现在还没理解,换了种构图(看其他大牛的博客),根据a和b的值,在分a>=b和a #include #include usingnamespacestd; constintmaxn=123; constintmaxm=100000; constintinf=0x5fffffff;
jxy859
·
2011-10-18 20:00
hdu4067
pid=4067 title : Random
Maze
分析转载自: http://blog.csdn.net/fp_hzq/article
goAheadtw
·
2011-10-10 21:00
图论
最小费用最大流
hdu 4067 Random
Maze
(最小费用最大流)
RandomMazeTimeLimit:10000/3000MS(Java/Others) MemoryLimit:65536/32768K(Java/Others)TotalSubmission(s):256 AcceptedSubmission(s):69ProblemDescriptionInthegame“AChineseGhostStory”,therearemanyrand
fp_hzq
·
2011-10-08 16:00
Integer
Random
Graph
input
each
output
HDU4067 Random
Maze
最小费用最大流 福州网络赛
RandomMazeTimeLimit:10000/3000MS(Java/Others)MemoryLimit:65536/32768K(Java/Others)TotalSubmission(s):243AcceptedSubmission(s):63ProblemDescriptionInthegame“AChineseGhostStory”,therearemanyrandommazes
power721
·
2011-10-08 11:00
网络
Random
Graph
insert
each
output
UVa Problem 705 Slash
Maze
(斜线迷宫)
//SlashMaze(斜线迷宫) //PC/UVaIDs:110904/705,Popularity:B,Successrate:averageLevel:2 //Verdict:Accepted //SubmissionDate:2011-09-28 //UVaRunTime:0.012s // //版权所有(C)2011,邱秋。metaphysis#yeahdotnet // //[问题描述
metaphysis
·
2011-09-28 08:00
c
算法
Date
struct
UP
任务
Hdu 4035
Maze
(dp求期望) - 2011 ACM/ICPC 成都赛区网络预选赛 1005
如果感觉这个题看不懂,也可以按照我的步骤来看:Poj2096-->Zoj3329-->
Hdu4035
/** dp求期望的题。
morgan_xww
·
2011-09-15 09:00
c
网络
BI
search
hdu 4035
Maze
在树上求逃出去的期望
ProblemDescriptionWhenwakeup,lxhgwwfindhimselfinahugemaze.ThemazeconsistedbyNroomsandtunnelsconnectingtheserooms.Eachpairofroomsisconnectedbyoneandonlyonepath.Initially,lxhgwwisinroom1.Eachroomhasadan
kongming_acm
·
2011-09-13 20:00
POJ 3026 Borg
Maze
BFS+Prim
题意:给定一个迷宫,在一个迷宫内,建立一颗最小生成树连接所有点。(这些点即‘A’或‘S’)题解:通过BFS找到'S'与每个’A'之间的最短路径。然后prim建立最小生成树。 #include #include #include usingnamespacestd; #defineINF10000000 #defineN52 boolvis[N][N]; intpath[N*2][N*2],ma
Tsaid
·
2011-09-08 23:00
Factory Methods
package designPattern; //creator class MazeGame{ public
Maze
CreateMaze()
·
2011-08-31 16:00
factory
Abstract factory
designPattern; //Abstract factory //定义生产各个产品的接口 class MazeFactory{ public
Maze
·
2011-08-31 16:00
abstract
生成迷宫的算法
.4ngel.net/article/17.htmhttp://blog.csdn.net/homer1984/article/details/3891780http://dourok.info/2011/07/
maze
_generation_algorithm
慎道
·
2011-08-13 12:00
POJ3026-Borg
Maze
转载请注明出处:優YoU http://user.qzone.qq.com/289065406/blog/1299324104 提示:BFS+Prim大致题意:在一个y行x列的迷宫中,有可行走的通路空格’‘,不可行走的墙’#’,还有两种英文字母A和S,现在从S出发,要求用最短的路径L连接所有字母,输出这条路径L的总长度。 一格的长度为1,而且移动的方法只有上、下、左、右,所以在无任何墙的情况下
lyy289065406
·
2011-07-30 09:00
Algorithm
算法
数据库
input
output
structure
HDU 3871 Cubic
Maze
【Simulation Building Graph + BFS】【废题,不要看了,不知道现在数据改成什么鬼德性了。。这份代码和标程都交不过去了。】
HDU3871CubicMaze【SimulationBuildingGraph+BFS】【废题,不要看了,不知道现在数据改成什么鬼德性了。。这份代码和标程都交不过去了。】CubicMazeTimeLimit:2000/1000MS(Java/Others) MemoryLimit:65768/32768K(Java/Others)TotalSubmission(s):14 Accep
From A Start,As An Acmer
·
2011-07-23 15:00
自动处理头文件的依赖关系
all:main main:main.ostack.omaze.o gcc$^-o$@ main.o:main.hstack.hmaze.h stack.o:stack.hmain.h
maze
.o
liuchao1986105
·
2011-07-22 13:00
正则表达式
shell
gcc
File
include
makefile
Makefile基础
我们先看一个例子,这个例子由例 12.3“用深度优先搜索解迷宫问题”改写而成:/*main.c*/ #include #include"main.h" #include"stack.h" #include"
maze
.h
a564941464
·
2011-07-20 23:00
makefile
makefile 基础知识
例如: main: main.o stack.o
maze
.o
xiaozhao-521
·
2011-06-28 17:00
C++
c
unix
gcc
C#
makefile 基础知识
例如: main: main.o stack.o
maze
.o
xiaozhao-521
·
2011-06-28 17:00
C++
c
unix
gcc
C#
makefile 基础知识
例如: main: main.o stack.o
maze
.o
xiaozhao-521
·
2011-06-28 17:00
C++
c
unix
gcc
C#
老鼠走迷官(一)
演算法ProcedureGO(
maze
[])[ VISIT(m
·
2011-06-03 06:00
史密森博物馆公布“Art of Games”投票结果
这80款游戏(PDF)包括:吃豆人,太空入侵者,TRON:
Maze
‐Atron,席德梅尔的海盗,超级马里奥兄弟3,塞尔达传说,超级马里奥世界,TheLegen
blackhat 秋也
·
2011-05-07 04:00
classicgames
poj3083——Children of the Candy Corn
include<cstdio> #include<string> #include<queue> using namespace std; #define N 45 char
maze
44424742
·
2011-04-06 08:00
J#
迷宫算法
test; /** * * 这个class代表每个位置,相当于c中的struct,包含位置属性(P,X,G),x坐标和y * 坐标3个元素以及一些getter, setter函数以方便
Maze
.java
leonardo888
·
2011-03-31 19:00
C++
c
算法
C#
J#
基础深搜题
Java/Others)Total Submission(s): 227 Accepted Submission(s): 56Problem DescriptionYou are now in a
maze
Yiner的ACM
·
2011-03-13 11:00
广度优先搜索 简单举例(
maze
)
mazeTimeLimit:1000MS MemoryLimit:65536KTotalSubmit:290Accepted:103Description500年前,Jesse是我国最卓越的剑客。他英俊潇洒,而且机智过人^_^。突然有一天,Jesse心爱的公主被魔王抓走,并困在了一个巨大的迷宫中。Jesse听到这个消息,非常紧张。他知道公主在迷宫中还能坚持T个小时,他急忙赶到迷宫,开始到处寻找公主
tongyongzh
·
2011-01-03 11:00
struct
测试
System
input
iostream
output
USACO 2.4.2 Overfencing (Floodfill)
USACO2.4.2Overfencing(Floodfill)floodfill/**//*ID: lorelei3TASK:
maze
1LANG: C++*/#include const int dx1
小阮的菜田
·
2010-12-09 22:00
用递归实现迷宫问题
1.编写迷宫类
Maze
.java public class
Maze
{ private final int PATH = 7; //PATH用于标记正确路径 private final
chinagdvea
·
2010-12-03 22:00
J#
Find a way out of the ClassLoader
maze
Qestion: When should I use Thread.getContextClassLoader()?Answer: Although not frequently asked, this question is rather tough to correctly answer. It usually comes up during framework programming, wh
leonzhx
·
2010-10-28 17:00
jvm
thread
Web
Scheme
J2SE
maze
include"stack.h"usingnamespacestd;#defineUP 0x00000001#defineDOWN 0x00000010#defineLEFT 0x00000100#defineRIGHT 0x00001000boolwalk_
maze
zhaogengzi
·
2010-10-14 18:00
struct
UP
include
A Algorithm Implementation for
Maze
Issue
AAlgorithmImplementationforMazeIssueHereismysimpleimplementationformazeissue. 1 #include 2 #include 3 #include 4 #include 5 #define ROW_NUM 8 6 #define COL_NUM 8 7 8 typedef struct { 9 int x;
JonsenElizee
·
2010-10-09 23:00
自己写的链栈实现的迷宫算法,发帖纪念下...
#include<stdio.h> #include<malloc.h> #include<stdlib.h> int m,n; int **
maze
=
yuxingfirst
·
2010-10-01 01:00
算法
J#
求解迷宫算法 递归法
要加的话,就要在每次检测到下个可进入点,调用
maze
_recu前Push(stack,e);,而不是在一开始统一Push了。
RichardYSteven
·
2010-09-27 17:00
上一页
15
16
17
18
19
20
21
22
下一页
按字母分类:
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
其他