CDN加速镜像 | 设为首页 | 加入收藏夹
当前位置: 首页 资源下载 源码下载 数值算法/人工智能 数据结构常用算法 搜索资源 - Get

搜索资源列表

  1. 求解约瑟夫问题

    2下载:
  2. 求解约瑟夫问题。设有n个人围成一个圆圈坐下,对所有围从的人从某个位置开始编号为1,2,3,……,n,从编号为1的人开始报数1,报数依交进行,报数n的人即出列,下一个人从1开始报数,再报数m的人便是第二个出列的人如此重复下去,直到最后一个人出列为止,于是便得到一个出列的顺序,这称之为约瑟夫(Josephu)问题。-solving problems. N individuals have formed a circle to sit down, all right Wai from the star
  3. 所属分类:数据结构常用算法

    • 发布日期:2008-10-13
    • 文件大小:7.84kb
    • 提供者:葛林
  1. SortedSet

    0下载:
  2. 本程序用VC++完成 定义类模板SortedSet (包括方法的实现) ,即元素有序的集合,集合元素的类型和集合元素的最大个数可由使用者确定。要 求该类模板对外提供以下三种操作: insert:加入一个新的元素到合适的位置上,并保证集合元素的值不重复; get:返回比给定值大的最小元素的地址。若不存在,返回-1; del:删除与给定值相等的那个元素,并保持剩余元素的有序性。-the completion of procedures with VC SortedSet clas
  3. 所属分类:数据结构常用算法

    • 发布日期:2008-10-13
    • 文件大小:3.23kb
    • 提供者:zhangbb
  1. vbNumerical10

    0下载:
  2. 最小平方近似法 (least-squares approximation) 是用來求出一組離散 (discrete) 數據點的近似函數 (approximating function),作實驗所得的數據亦常使用最小平方近似法來達成曲線密合 (curve fitting)。以下所介紹的最小平方近似法是使用多項式作為近似函數,除了多項式之外,指數、對數方程式亦可作為近似函數。關於最小平方近似法的計算原理,請參閱市面上的數值分析書籍-least square approximation (least-
  3. 所属分类:数据结构常用算法

    • 发布日期:2008-10-13
    • 文件大小:3.22kb
    • 提供者:三米
  1. vc++part8

    0下载:
  2. 数据结构算法vc++6.0少有的特别好的程序集 强烈推荐part8,特别好,特别适合学习数据结构,有向动手实践的,把数据结构的算法都用vc实现了,经典经典经典经典经典经典经典!-data structure algorithms vc 6.0 few good special procedures set part8 strongly recommended, particularly good, particularly suitable for the study of data str
  3. 所属分类:数据结构常用算法

    • 发布日期:2008-10-13
    • 文件大小:466.49kb
    • 提供者:魏洪平
  1. vc++part9

    0下载:
  2. 数据结构算法vc++6.0少有的特别好的程序集part9 强烈推荐,特别好,特别适合学习数据结构,有向动手实践的,把数据结构的算法都用vc实现了,经典经典经典经典经典经典经典!-data structure algorithms vc 6.0 few good special procedures set part9 strongly recommended, particularly good, particularly suitable for the study of data str
  3. 所属分类:数据结构常用算法

    • 发布日期:2008-10-13
    • 文件大小:109.24kb
    • 提供者:魏洪平
  1. shujuchouxiang

    0下载:
  2. 数据抽象(使用类和对象设计回应程序) 实验内容描述: 1. 测试程序 假设类名为Welcome,测试程序如下: void main() { Welcome we Welcome you(we) you.Display() you.Set(“Thank you.”) cout<<you.Get()<<endl you.talk() you.Display() } -data ab
  3. 所属分类:数据结构常用算法

    • 发布日期:2008-10-13
    • 文件大小:38.34kb
    • 提供者:jason
  1. 模拟

    0下载:
  2. 用BP算法对某个表达式进行模拟,通过模拟来得到最优的结果-BP algorithm for the simulation of a certain expression, through simulation to get the best results
  3. 所属分类:数据结构常用算法

    • 发布日期:2008-10-13
    • 文件大小:1.25kb
    • 提供者:记忆裂痕
  1. aluo2.rar

    0下载:
  2. 拿“优”的数据结构课程设计:运动会分数统计。 里头包括源代码、exe文件、课程设计报告,非常全,值得下载 值得参考!,Get " excellent" curriculum of the data structure design: Games Score Statistics. Inside, including source code, exe files, curriculum design report, very wide, it is worth making r
  3. 所属分类:Data structs

    • 发布日期:2017-03-28
    • 文件大小:73.51kb
    • 提供者:aluo
  1. hashtable

    0下载:
  2. 一个哈希查找算法,用c实现, gcc编译 如果使用vs可能会提示少stdint.h-A hash search algorithm, with c and gcc compiler to achieve, if you are using VS , you may get a "can t find stdint.h",
  3. 所属分类:Data structs

    • 发布日期:2017-03-27
    • 文件大小:4.65kb
    • 提供者:qz
  1. BankCallingSystem

    0下载:
  2. 模拟银行叫号系统。使用基本队列操作。假设某银行有5 个服务窗口,一个统一的叫号系统。在服务时段内,每个时间单位有随机数目的顾客到来,每个新来的顾客得到一个顺序号,排入等待服务队列,等待叫号。 每个服务窗口的职员处理完一个顾客的业务后,顾客即刻离开,职员呼叫下一个顾客,窗口显示下一个顾客的服务号。被叫号的顾客随即得到服务。假定每个顾客需要的服务时间也是随机的。试设计程序模拟上述场景。-Simulated bank calling system. Use basic queue operations
  3. 所属分类:Data structs

    • 发布日期:2017-04-03
    • 文件大小:81.14kb
    • 提供者:Yuan
  1. Queap

    2下载:
  2. 用两个栈模拟一个队列,包含出队、入队和获取最大值函数,时间复杂的O(n)-Simulation of a queue with two stacks contain enter and quit team, and get the maximum value function, the time complexity of O (n)
  3. 所属分类:数据结构常用算法

    • 发布日期:2013-11-07
    • 文件大小:1.14kb
    • 提供者:吕楠
  1. shy

    0下载:
  2. 教学计划编制问题,内有详细报告,源代码,还有实验结果代码,总之是非常的详细.这是一份数据结构的课程设计,花了很长时间弄整理出来的-Teaching programming problem, there are detailed reports, source code, there are experimental results code, as long as it is very detailed. This is a data structure of the curriculum de
  3. 所属分类:Data structs

    • 发布日期:2017-03-30
    • 文件大小:165.85kb
    • 提供者:jay
  1. jiandanxuanze

    0下载:
  2. 基本思想:   设所排序序列的记录个数为n。i取1,2,…,n-1,从所有n-i+1个记录(R,R[i+1],…,R[n]中找出排序码最小的记录,与第i个记录交换。执行n-1趟 后就完成了记录序列的排序。 -The basic idea: set up the sort of record sequence number for n. i get 1,2, ..., n-1, from all n-i+ 1 record (R, R [i+ 1], ..., R [n] in orde
  3. 所属分类:Data structs

    • 发布日期:2017-04-15
    • 文件大小:5.64kb
    • 提供者:小杉
  1. aluo1

    0下载:
  2. 拿“优”的数据结构课程设计:模拟旅馆管理系统的床位的分配与回收功能。 里头包括源代码、exe文件、课程设计报告。非常全,值得下载!-Get " excellent" curriculum of the data structure design: Analog hotel management system for the allocation of beds and Recycling function. Inside, including source code, ex
  3. 所属分类:Data structs

    • 发布日期:2017-04-24
    • 文件大小:81.45kb
    • 提供者:aluo
  1. Hash-algorithm

    0下载:
  2. 哈希算法的描述,次代码在课程设计中取得了95分的高分。-it s the descr iption of Hash algorithm,which used to get high scores of 95 in mine curriculum project.
  3. 所属分类:Data structs

    • 发布日期:2017-03-31
    • 文件大小:220.43kb
    • 提供者:白一子
  1. Kwitansi

    0下载:
  2. When we buy something, we will get a paper with a number speller.
  3. 所属分类:Data structs

    • 发布日期:2017-05-03
    • 文件大小:899.92kb
    • 提供者:JeT
  1. JIEHUN

    0下载:
  2. 描叙一个人的成长过程,长大,结婚生子,不带年龄不能结婚,不可以重婚等-Describes a person' s upbringing, grow up, get married and have children, without age should not get married, not bigamy, etc.
  3. 所属分类:Data structs

    • 发布日期:2017-04-24
    • 文件大小:388.78kb
    • 提供者:戴阿卉
  1. yuanma

    0下载:
  2. 我的数据结构课程设计源码,以前弄的,现在上传上去了!-My curriculum design source data structure, in the past get now upload a go!
  3. 所属分类:Data structs

    • 发布日期:2017-05-03
    • 文件大小:633.42kb
    • 提供者:蚕豆
  1. Problem-GET

    0下载:
  2. Problem-GET A LINE study ACM 不错的ACM-Problem-GET A LINE study ACM
  3. 所属分类:Data structs

    • 发布日期:2017-04-25
    • 文件大小:79.23kb
    • 提供者:puppy
  1. Maze

    0下载:
  2. input the start point ,it will print a stepline to get out the maze
  3. 所属分类:数据结构

    • 发布日期:2018-04-23
    • 文件大小:667kb
    • 提供者:feiyuan
« 12 3 4 5 6 7 8 9 10 »
搜珍网 www.dssz.com