搜索资源列表
PATH.NET
- 一个实现获取各种路径的实例(文件路径、windows 路径、system路径)-access to a variety of paths to achieve examples (paper trails, windows path system path)
随机迷宫解
- 输入任意大小的矩阵阶数n,程序将自动产生一个随机矩阵迷宫。本程序可以迅速的找到所有可能的路径,并显示之。代码中故意限制只显示最多30条路径。-arbitrary size of the input matrix order n, the program will automatically generate a random matrix maze. This program can quickly find all possible paths, and Displays. Code inte
yddownv
- 欢迎使用《雨点下载系统 2.0》! 本系统仅提供给个人网站免费使用,请保留版权信息。 1.5版 to 2.0版升级说明: 1、请将update.asp文件copy到1.5版的根目录,然后执行。如果您的数据库结构改动过,将不能升级,请不要再执行此升级文件。 2、升级成功后,将2.0版的所有文件覆盖掉1.5版的文件,或将数据库文件copy到2.0版中,然后更改conn.asp和admin/conn.asp中的数据库连接路径,最后请删除此
文件拷贝
- 文本文件的拷贝,能够显示文本文件内容,和能够拷贝至输入的文本文件路径下-copy of the text file, it will show the text contents of the documents and to be able to copy the input text file paths
ZSplitter
- 设计一个文件的合并和分割工具。 (1)要求图形界面,用户界面友好。 (2)可以将几个文件(能在硬盘中选择的)按照用户输入的大小分割成几个小文件,同样,也可以将几个小文件 合并成一个大文件。文件名和存储路径可以由用户输入,也可以选择硬盘上的文件名和路径。 (3)可在工具中显示合并有关文件的信息和合并后各个小文件的有关信息,包括文件太小,文件所在位置,文件 名称,文件的所有者等信息。 -design of a document to the merger and segmentat
烁空网络课堂系统0
- 详细说明在里头 ================================ 1:安装IIS和.NET框架 2:设置虚拟目录,通过http://localhost/虚拟目录 即可使用 ================================增强安全================================ 1,你可以修改web.config和Data文件夹中的数据库名 2,点击“控制面板”进入后台修改“后台虚拟路径”-elaborate on the i
16.在有向图中查找由v1到v2的所有路径
- 建立一个有向图 给定任意2个顶点 求得两个顶点间的所有路径 然后打印 数据结构中有此例题-to establish a plan to set arbitrary vertex obtained two vertices between the two paths before all print data structure of this example
ReplaceInclude
- 用来根据脚本批量自动转换C工程文件名和目录名,并保证工程文件中涉及的头文件名路径相应地修改。-volume automatically converted C project file and directory names, and ensure the documents relating to the first file name paths revised accordingly.
基于ICMP协议的Ping程序
- 基于ICMP协议的Ping程序 Ping程序是用于测试网络中主机之间网络通信路径的常用工具,本试验利用ICMP协议编写一个自己的Ping应用程序-agreement on the ICMP Ping Ping procedures for testing procedures mainframe network communication paths between network commonly used tools, the use of the test to prepare an
Download_URL
- 真实下载地址探测,针对重定向的下载地址,找到真实文件路径。-real download detection, response redirect download addresses, find true file paths.
根据给定的对象和路径,获得其子孙成员
- 根据给定的对象和路径,获得其子孙成员-According to the objects and paths, access to their children and grandchildren members
TRA3
- 旅行商算法算出全国31外城市的最短单源路径。-traveling salesman algorithm calculates the country's 31 cities outside the single source shortest paths.
qiyeguanli
- 全新后台新闻编辑器 2.全新后台下载编辑器 3.增加图片友情链接管理功能 4.JMail在线发送邮件,支持在线导出Email 5.新增在后台网站配置中指定网站首页新闻条数 6.后台网站配置中指定网站首页产品列表的个数 7.后台下载和新闻管理中查找功能 8.后台调查编辑功能 9.后台UBB字体 10.企业文化的图片可以使用相对路径 -new background news editor two. New background download
stepnc_write_v1_1
- The STEPNCWrite library writes STEP-NC toolpath data (AP-238 CC1). This C++ library is completely open-source and has been released under the GNU General Public License (GPL). The library writes data in XML format (ISO 10303-28) using just prin
processpathshow
- 用OpenProcess()函数将进程打开后,再利用EnumProcessModules()函数枚举该进程的模块,最后利用GetModuleFileNameEx()函数就能取得该进程的路径。-with OpenProcess () function to open the process, Reuse EnumProcessModules () function except to the process modules, Finally GetModuleFileNameEx () funct
OpenMPandWin32ThreadExample
- Intel Proton 8.0 build instructions: Change \\Include, \\Lib, and \\Bin paths in omp.bat to your actual ones. Run omp.bat to build omp_smp.exe Microsoft: Use MS Visual Studio 2005 beta 1 compiler and vcomp.dll Compiler options may di
haowandedafeidie
- 最初步的模型以及算法.空格是发射,发射的具体效果没写,呵呵~~我个人觉得还有以下地方可以改: 1.飞碟的路径可以变化大些 2.飞碟出现的方向 3.每次飞碟出现后有规定子弹 4.闯关 -initial model and algorithm. Space is fired, and the launch specific effects I did not write, Ha ha ~ ~ I think there can be changes to the followin
tu
- [输入] 图的顶点个数N,图中顶点之间的关系及起点A和终点B [输出] 若A到B无路径,则输出“There is no path” 否则输出A到B路径上个顶点 [存储结构] 图采用邻接矩阵的方式存储。 [算法的基本思想] 采用广度优先搜索的方法,从顶点A开始,依次访问与A邻接的顶点VA1,VA2,...,VAK, 访问遍之后,若没有访问B,则继续访问与VA1邻接的顶点VA11,VA12,...,VA1M,再访问与VA2邻接顶点...,如此下去,直至找到B,最先到达
path
- 探询路径 问题的提出:编写程序,输出下图的0至n(1<=n&&n>=9)的所有路径。 该题的核心是找出满足一定规律的递归条件,从而设计出递归算法。仔细分析不难发现规律: 0至n的路径由0至n-1的路径,加上n-1至n的路径,以及0至n-2的路径,加上n-2至n的路径这 两部分组成。即欲找0至n的路径,可以转化为找0至n-1及0至n-2的路径,这就可建立递归。-Explore the path Of the problem: the preparation
Shortest_path_counting
- acm算法设计: 描述: 国际象棋车可以水平或垂直的任何方在同一行或同一列的棋盘。 找到一些最短路径的一个车可以从一个角落里一个棋盘的斜对面角落。 输入: 一整数n为行数和列的棋盘。0 < n <=16 输出: 数量的最短路径。 例输入: 3或4 例输出: 6或20 -Descr iption: A chess rook can move horizontally or vertically to any square in th