CDN加速镜像 | 设为首页 | 加入收藏夹
当前位置: 首页 源码下载 数值算法/人工智能

资源列表

« 1 2 ... .31 .32 .33 .34 .35 24236.37 .38 .39 .40 .41 ... 28278 »
  1. lianbiao

    0下载:
  2. 用C#的数据结构写了一个单循环链表的程序希望大家可以看看提出宝贵意见-Data structure in C# to write a single cycle of the program list hope we can look for their valuable comments
  3. 所属分类:Data structs

    • 发布日期:2017-04-05
    • 文件大小:33.01kb
    • 提供者:朱杰
  1. peidui

    0下载:
  2. 用C#的数据结构写了一个舞会配对的小程序 是自己写的大家看看怎么样-Data structure in C# to write a pair of small ball of their own program we look at how to write
  3. 所属分类:Data structs

    • 发布日期:2017-04-08
    • 文件大小:19.37kb
    • 提供者:朱杰
  1. sort-algorithm-

    0下载:
  2. 这个一个介绍堆积排序的算法,帮助理解数据库中的排序。-The accumulation of a sort algorithm introduced to help understand the database sort.
  3. 所属分类:Data structs

    • 发布日期:2017-03-28
    • 文件大小:272.18kb
    • 提供者:haozi
  1. a-bubble-sort-program

    0下载:
  2. 这是一个介绍冒泡排序的算法,建立了一个冒泡排序的项目,帮助理解数据库排序问题。-This is a bubble sort algorithm introduced, the establishment of a bubble sort program, sorting a database to help understand the problem.
  3. 所属分类:Data structs

    • 发布日期:2017-03-23
    • 文件大小:318.8kb
    • 提供者:haozi
  1. ecs

    0下载:
  2. 二叉树的一切功能,满足最苛刻的需求 -Binary tree of all functions to meet the most demanding requirements
  3. 所属分类:Data structs

    • 发布日期:2017-04-14
    • 文件大小:4.25kb
    • 提供者:李滚
  1. mathematical-used-in-CPP

    0下载:
  2. 本光盘是《用C++语言编写数学常用算法(修订版)》一书的配书盘,里面包括书中全部C++程序的源代码(一些小的示例除外),并用中文加以详细注释。 光盘共有五个文件夹,名称分别为:①BCMATH;②VCMATH;③CURVE;④SOUND;⑤examples。 -This CD is " in C++ language mathematics commonly used algorithm (revised edition)," a book with a book pla
  3. 所属分类:Data structs

    • 发布日期:2017-05-18
    • 文件大小:4.75mb
    • 提供者:zmm
  1. maxtir

    0下载:
  2. 矩阵算法的实现,矩阵多种常见的数值运算均已实现,十分可靠-Matrix algorithm, the matrix of a variety of common numerical operations have been achieved, very reliable
  3. 所属分类:Data structs

    • 发布日期:2017-04-05
    • 文件大小:63.91kb
    • 提供者:greathome
  1. lpc-c

    0下载:
  2. LEVINSON-DURBIN的算法描述以及c实现-The algorithm of LEVINSON-DURBIN describes and c realize
  3. 所属分类:Data structs

    • 发布日期:2017-04-03
    • 文件大小:42.22kb
    • 提供者:zhangxiang
  1. AStar

    0下载:
  2. A*(A-Star)算法是一种静态路网中求解最短路最有效的方法。公式表示为: f(n)=g(n)+h(n),其中f(n) 是从初始点经由节点n到目标点的估价函数,g(n) 是在状态空间中从初始节点到n节点的实际代价,h(n)是从n到目标节点最佳路径的估计代价。 -A* (A-Star) is a static network algorithm for solving the shortest most effective way. Formula is expressed as: f (n)
  3. 所属分类:Data structs

    • 发布日期:2017-05-18
    • 文件大小:4.62mb
    • 提供者:王健
  1. Mazing-Problem

    0下载:
  2. 迷宫问题 以一个m*n的长方阵表示迷宫,0和1分别表示迷宫中的通路和障碍。设计一个程序,对任意设定的迷宫,求出一条从入口到出口的通路,或得出没有通路的结论。 基本要求: (1)首先实现一个以链表作存储结构的栈类型,然后编写一个求解迷宫的非递归程序。求得的通路以三元组(i,j,d)的形式输出,其中(i,j)指示迷宫中的一个坐标,d表示走到下一坐标的方向。 (2)测试几组数据,数据的规模由小变大,即网格越来越小,障碍越来越复杂。 拓展要求: 实现该问题的可视化界面,用鼠标点
  3. 所属分类:Data structs

    • 发布日期:2017-03-24
    • 文件大小:42.84kb
    • 提供者:panbowen
  1. Monks-and-savage-problem

    0下载:
  2. 这是一个古典问题。假设有n个修道士和n个野人准备渡河,但只有一条能容纳c人的小船,为了防止野人侵犯修道士,要求无论在何处,修道士的个数不得少于野人的人数(除非修道士个数为0)。如果两种人都会划船,试设计一个算法,确定他们能否渡过河去,若能,则给出一个小船来回次数最少的最佳方案。 要求: (1)用一个三元组(x1,x2,x3)表示渡河过程中各个状态。其中,x1表示起始岸上修道士个数,x2表示起始岸上野人个数,x3表示小船位置(0——在目的岸,1——在起始岸)。例如(2,1,1)表示起始岸上
  3. 所属分类:Data structs

    • 发布日期:2017-03-29
    • 文件大小:208.72kb
    • 提供者:panbowen
  1. RegionGrow

    0下载:
  2. 实现了二维图像的区域增长算法,在二维数组上进行了测试-To achieve a two-dimensional image of the region growing algorithm, tested on two-dimensional array
  3. 所属分类:Data structs

    • 发布日期:2017-04-16
    • 文件大小:494.71kb
    • 提供者:z*hou
« 1 2 ... .31 .32 .33 .34 .35 24236.37 .38 .39 .40 .41 ... 28278 »
搜珍网 www.dssz.com