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

搜索资源列表

  1. SRC

    0下载:
  2. “流媒体计费系统”如何编译: 1、 安装realSDK。 把shareware\\RealSystem\\RealSDK\\ rsg2sdk_r4.zip解开放到c:\\realSDK目录下。 2、 给VC.NET添加包括头文件的路径 在VC.NET中添加RealSDK的头文件路径。 3、 编译 直接点击编译完成对整个项目的编译。-"Streaming Media Billing System," how to build : an installation realSDK.
  3. 所属分类:流媒体/Mpeg4

    • 发布日期:2008-10-13
    • 文件大小:15723
    • 提供者:姜晓彩
  1. webQQ

    0下载:
  2. 本程序是for NowBoard 1.*版本,本身不带数据库,设置数据库 路径就可以了,是做为一个论坛插件发布的,Server目录为服务器端 请修改web.config文件里相应的数据库连接路径 ,并建一目录放在论 坛目录下,并把Bin下的.dll文件放置到论坛的bin目录. Client为webQQ 登陆,修改web.config文件,都做了相应说明的了.这个要建虚拟目录的 管理用户名和密码是xiaoxiao 111111 这个版本还不完善 ,但做为交流已够了,用户图标是随机的 因为读取的是N
  3. 所属分类:ICQ/即时通讯

    • 发布日期:2008-10-13
    • 文件大小:549761
    • 提供者:何亚辉
  1. cqa0408

    0下载:
  2. 代码包含以下一个示范例子: 1、GetKeyState 使用示例 2、STL 字符串类与 UNICODE 3、如何向C#或.NET框架暴露 C++ 对象? 4、如何获取专用文件夹的路径名? 巧。-code contains a model following examples : 1, 2 GetKeyState use examples, and the STL string UNICODE three categories, how to C# or.NET framework expose
  3. 所属分类:STL

    • 发布日期:2008-10-13
    • 文件大小:195422
    • 提供者:刘斌
  1. PATH.NET

    0下载:
  2. 一个实现获取各种路径的实例(文件路径、windows 路径、system路径)-access to a variety of paths to achieve examples (paper trails, windows path system path)
  3. 所属分类:钩子与API截获

    • 发布日期:2008-10-13
    • 文件大小:16296
    • 提供者:刘春华
  1. 随机迷宫解

    0下载:
  2. 输入任意大小的矩阵阶数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
  3. 所属分类:控制台(字符窗口)编程

    • 发布日期:2008-10-13
    • 文件大小:11367
    • 提供者:aaaa
  1. yddownv

    0下载:
  2. 欢迎使用《雨点下载系统 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中的数据库连接路径,最后请删除此
  3. 所属分类:其它

    • 发布日期:2008-10-13
    • 文件大小:349530
    • 提供者:李波
  1. 文件拷贝

    0下载:
  2. 文本文件的拷贝,能够显示文本文件内容,和能够拷贝至输入的文本文件路径下-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
  3. 所属分类:对话框与窗口

    • 发布日期:2008-10-13
    • 文件大小:5269
    • 提供者:嘻嘻
  1. SHORTEST-PATHS

    1下载:
  2. 单源点最短路径算法的设计与实现 算法 SHORTEST-PATHS求出了v0至其它各结点的最短路径,但是没有给出这些最短路径。补充该算法,使新算法在找出这些最短路径长度的同时,也能求出路径上的结点序列。-single source shortest path algorithm design and implementation of the algorithm SHORTEST - PATHS calculated the projectile to other nodes in the
  3. 所属分类:软件工程

    • 发布日期:2008-10-13
    • 文件大小:891
    • 提供者:胡图
  1. KShortestPaths

    0下载:
  2. 在GRAPH中找出K條最短路徑,並且輸出到SP.txt檔中-In GRAPH find K shortest paths, and output to file SP.txt
  3. 所属分类:AI-NN-PR

    • 发布日期:2017-05-06
    • 文件大小:20862
    • 提供者:周昊宸
  1. redundantpaths

    0下载:
  2. c pgm to find redundant paths in a graph.Many fault-tolerant network algorithms rely on an underlying assumption that there are possibly distinct network paths between a source-destination pair. Given a directed graph as input, write a program that u
  3. 所属分类:Compiler program

    • 发布日期:2017-03-31
    • 文件大小:1748
    • 提供者:jazz
  1. path

    0下载:
  2. 探询路径 问题的提出:编写程序,输出下图的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
  3. 所属分类:Windows Develop

    • 发布日期:2017-04-02
    • 文件大小:5791
    • 提供者:颜昌文
  1. Shortest_path_counting

    0下载:
  2. acm算法设计: 描述: 国际象棋车可以水平或垂直的任何方在同一行或同一列的棋盘。 找到一些最短路径的一个车可以从一个角落里一个棋盘的斜对面角落。 输入: 一整数n为行数和列的棋盘。0 < n <=16 输出: 数量的最短路径。 例输入: 3或4 例输出: 6或20 -Descr iption: A chess rook can move horizontally or vertically to any square in th
  3. 所属分类:Other windows programs

    • 发布日期:2017-03-29
    • 文件大小:212417
    • 提供者:张波
  1. fullpath

    0下载:
  2. 移动机器人的全路径规划算法,可以输出所有路径, vc++编写,很好,推荐-The whole mobile robot path planning algorithm, all paths can be output, vc++ to prepare, very good, recommended
  3. 所属分类:AI-NN-PR

    • 发布日期:2017-05-17
    • 文件大小:4676850
    • 提供者:周光有
  1. youxiangxunhuantumigongwentiqiujie

    0下载:
  2. 有向循环图迷宫问题求解,普通迷宫问题要求找出从迷宫入口到出口的所有路径,而此次研究的主要内容是找出有向循环图中的回路(即容易造成流程死循环的地方),消除循环并找出死结点。与此同时,找出死结点后,其他顶点最终都能够到达迷宫的出口。在实际审计过程中的应用意义则为:确定审计工作在哪一个负责部门完成后,是无法继续向其他负责部门传递审计工作直到完成整个审计流程的。-Directed cyclic graph maze problem solving, general maze problem requir
  3. 所属分类:Data structs

    • 发布日期:2017-04-03
    • 文件大小:938
    • 提供者:wenwen
  1. aaaa

    0下载:
  2. 带权有向图的最短路径及拓补排序算法,用于计算最短路径的算法-Weighted directed graph of shortest paths and expand up sorting algorithm used to calculate the shortest path algorithm
  3. 所属分类:Data structs

    • 发布日期:2017-04-01
    • 文件大小:5534
    • 提供者:steven
  1. MINIMALpATH

    0下载:
  2. A shortest path tree, in graph theory, is a subgraph of a given (possibly weighted) graph constructed so that the distance between a selected root node and all other nodes is minimal. It is a tree because if there are two paths between the root node
  3. 所属分类:AI-NN-PR

    • 发布日期:2017-03-28
    • 文件大小:6776
    • 提供者:darulor
  1. Bellman-Fords-Shortest-Paths

    0下载:
  2. The Bellman–Ford algorithm computes single-source shortest paths in a weighted digraph. For graphs with only non-negative edge weights, the faster Dijkstra s algorithm also solves the problem.
  3. 所属分类:Mathimatics-Numerical algorithms

    • 发布日期:2017-03-25
    • 文件大小:848
    • 提供者:ww
  1. paths

    0下载:
  2. this document is about counting paths with matlab
  3. 所属分类:matlab

    • 发布日期:2017-04-01
    • 文件大小:50401
    • 提供者:mil
  1. New-paths-on-a-StarLogo-adventure

    0下载:
  2. 复杂系统仿真软件starlogo探索的新路径-Explore new paths of complex system simulation software starlogo
  3. 所属分类:Development Research

    • 发布日期:2017-03-30
    • 文件大小:656836
    • 提供者:jiafangfang
  1. Mobile-robot-tracking-of-pre-planned-paths-

    0下载:
  2. ... ... ... Mobile robot tracking of pre-planned paths-............... Mobile robot tracking of pre-planned paths ..................................................................................................................
  3. 所属分类:matlab

    • 发布日期:2017-04-27
    • 文件大小:231043
    • 提供者:dolf
« 12 3 4 5 6 7 8 9 10 ... 32 »
搜珍网 www.dssz.com