CDN加速镜像 | 设为首页 | 加入收藏夹
当前位置: 首页 资源下载 搜索资源 - maze .c

搜索资源列表

  1. migong

    1下载:
  2. 用JAVA写的迷宫游戏~可以自己找路~也可以自动寻找路径 -Written using JAVA maze game can find a way ~ ~ also can automatically search for the path
  3. 所属分类:JavaScript

    • 发布日期:2014-05-07
    • 文件大小:170391
    • 提供者:L
  1. maze

    0下载:
  2. 这是经典迷宫问题,本代码是用C语言实现的-This is the classic maze problem, the code is achieved using C language
  3. 所属分类:Data structs

    • 发布日期:2017-04-02
    • 文件大小:2835
    • 提供者:huqiong
  1. 12202.c

    0下载:
  2. 由数字1,0组成的迷宫,1为障碍,0为通路,设法找出通路-Composed by the number of 1,0 maze, one for obstacle, 0 for the path and try to find an access road
  3. 所属分类:Document

    • 发布日期:2017-04-11
    • 文件大小:900
    • 提供者:梁娟
  1. MazeSolverDemo

    0下载:
  2. 走迷宫的一个仿真平台,在C#上开发,用于模拟电子鼠走迷宫-Maze, a simulation platform, the C# On the development, used to simulate the electronic mouse Maze
  3. 所属分类:CSharp

    • 发布日期:2017-04-08
    • 文件大小:56017
    • 提供者:郭丁丁
  1. c

    0下载:
  2. 黑白棋游戏、计算器,贪吃蛇、人机游戏,天气预报,背包、彩色框设计、模拟时钟、五子棋、迷宫的C语言源程序.-Reversi games, calculators, Snake, man-machine games, weather forecasts, backpack, color box design, simulation clock, Gobang, the maze of C language source code.
  3. 所属分类:Other windows programs

    • 发布日期:2017-03-29
    • 文件大小:17524
    • 提供者:阿铁
  1. datastruct_example

    0下载:
  2. 本人讲授数据结构课程时的所写的示例程序,结构清晰规范,有注释,全部可编译运行,包括如下代码: 长整数:ch0_bigint2.c 顺序表的实现:ch2_stable.c 链表的实现ch2_ltable.c 合并两个有序表:ch2_stable_merge.c 表达式计算:ch3_express.c 队列的链式实现:ch3_lqueue.c 栈的链式实现:ch3_lstack.c 迷宫求解:ch3_maze.c 队列的顺序实现:ch3_squeue.c
  3. 所属分类:Data structs

    • 发布日期:2017-03-29
    • 文件大小:14766
    • 提供者:kk.h
  1. maze-1.0-source-binaries

    0下载:
  2. C#迷宫程序 C#迷宫程序 C#迷宫程序 C#迷宫程序 -C# mazeC# mazeC# mazeC# mazeC# mazeC# mazeC# mazeC# mazeC# mazeC# mazeC# mazeC# maze
  3. 所属分类:CSharp

    • 发布日期:2017-04-25
    • 文件大小:99573
    • 提供者:丁俊杰
  1. Maze

    0下载:
  2. 数据结构中迷宫问题的求解,迷宫问题.vcproj 这是使用应用程序向导生成的 VC++ 项目的主项目文件。 它包含生成该文件的 Visual C++ 的版本信息,以及有关使用应用程序向导选择的平台、配置和项目功能的信息。 迷宫问题.cpp 这是主应用程序源文件。 StdAfx.h, StdAfx.cpp 这些文件用于生成名为 迷宫问题.pch 的预编译头 (PCH) 文件和名为 StdAfx.obj 的预编译类型文件。 -Data structure to solv
  3. 所属分类:Data structs

    • 发布日期:2017-04-26
    • 文件大小:155443
    • 提供者:张艳彬
  1. xtem

    0下载:
  2. 压缩包里有5个c程序,分别实现5个不同的算法:1个迷宫算法,-个货郎担算法-Compression bag 5 c procedures, respectively, to achieve five different algorithms: a maze algorithm,- a traveling salesman algorithm ..
  3. 所属分类:Other windows programs

    • 发布日期:2017-04-29
    • 文件大小:8147
    • 提供者:项玉
  1. xyz

    0下载:
  2. C语言课程设计集合 案例一 贪吃蛇游戏 案例二 计算器 案例三 黑白棋游戏 案例四 迷宫问题 案例五 扫地雷游戏 案例六 速算24 案例七 数据结构CAI系统 案例八 进程调度 案例九 存储管理分区分配算法 案例十 通讯录 案例十一 学生成绩管理 案例十二 工资管理 案例十三 图书借阅管理 案例十四 教师工作量计算 -C language curriculum design a collection of case calculator
  3. 所属分类:Other windows programs

    • 发布日期:2017-03-21
    • 文件大小:59422
    • 提供者:xyz
  1. Cpp1.c

    0下载:
  2. 利用栈的知识来求出从入口到出口的所有路径。采用穷举算法,即从入口出发,顺某一方向向前探索,若能走通,则继续向前走;否则沿原路退回一步,换一个方向再继续向前探索,直至所有可能的通路都探索到为止。为了保证在任何位置上都能沿原路退回,则需要一个栈来保存路径。迷宫的输入提供了两种形式,一种是系统默认的输入形式,令一种是用户可以指定文件,只要文件符合格式,用户即可将其作为迷宫地图。最终即可以显示总的路径数目,也可用箭头的形式显示迷宫的走法,形象直观。-maze
  3. 所属分类:Game Program

    • 发布日期:2017-04-13
    • 文件大小:1753
    • 提供者:zhangwen
  1. maze3dflyer-1.1.bin

    0下载:
  2. maze source code c++ using opengl it is very interesting to use opengl -maze source code c++ using opengl it is very interesting to use opengl
  3. 所属分类:Windows Develop

    • 发布日期:2017-05-04
    • 文件大小:1351764
    • 提供者:moom
  1. maze

    0下载:
  2. 用c写的迷宫算法,只求出一条路径,用到了回溯法。-Written by c maze algorithm, seeking a way to track, using a retrospective method.
  3. 所属分类:Data structs

    • 发布日期:2017-04-10
    • 文件大小:1396
    • 提供者:jfly
  1. d_3dmg

    1下载:
  2. 迷宫小游戏,可以自己编辑地图,基于OpenGL平台实现的。-Maze game, you can edit their own map, based on the OpenGL platform.
  3. 所属分类:Other Games

    • 发布日期:2017-04-04
    • 文件大小:967234
    • 提供者:风满楼
  1. maze

    0下载:
  2. 使用c++面向对象的编程思想,抽象出迷宫主要元素模型,模拟现实中在迷宫前进后退的情形,遇到死胡同则后退,否则前进直到到达出口,没有使用递归算法。-Using c++ object-oriented programming ideas, key elements of the abstract model of a maze to simulate realistic forward back in the maze where it encountered a dead-end retreat,
  3. 所属分类:Windows Develop

    • 发布日期:2017-04-05
    • 文件大小:378801
    • 提供者:weiqiang
  1. c-program

    0下载:
  2. C语言程序设计案例精编。包括“贪吃蛇游戏 计算器 黑白棋游戏 迷宫问题 扫地雷游戏”-C Programming Language Design Case compiled fine. Including " Snake Game Calculator Reversi game Maze Game Mine sweeping the problem," and so on
  3. 所属分类:source in ebook

    • 发布日期:2017-04-04
    • 文件大小:59377
    • 提供者:猪猪
  1. maze

    0下载:
  2. 一个用栈写的走迷宫小程序,开发环境C++,有用的朋友可以拿去参考-Written by Maze with a stack of small procedures, development environment, C++, a useful reference to a friend is unspeakable. .
  3. 所属分类:Other windows programs

    • 发布日期:2017-04-06
    • 文件大小:1049
    • 提供者:Hyker
  1. sixmazeproblem

    0下载:
  2. 求解数据结构中迷宫问题的C语言源程序,代码精炼,已通过运行-Data structure to solve a maze problem in C-language source code
  3. 所属分类:Data structs

    • 发布日期:2017-03-30
    • 文件大小:14290
    • 提供者:maxiujuan
  1. loseroom

    0下载:
  2. c#2005写的迷宫游戏,玩的过程中还可以播放音乐,这都是些简单的游戏,希望对C#初学者有一定帮助。-c# 2005 to write the maze game, play in the process can also play music, this is some simple games, want to have some help for beginners C#.
  3. 所属分类:Windows Develop

    • 发布日期:2017-05-20
    • 文件大小:5681975
    • 提供者:296
  1. maze

    0下载:
  2. c++ codin maze progra-c++ codin maze programm
  3. 所属分类:Other systems

    • 发布日期:2017-04-10
    • 文件大小:525
    • 提供者:haitam
« 1 2 3 45 6 7 8 9 10 ... 29 »
搜珍网 www.dssz.com