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

资源列表

« 1 2 ... .80 .81 .82 .83 .84 25085.86 .87 .88 .89 .90 ... 28275 »
  1. calculator

    0下载:
  2. 科学计算器。可以解读表达式,进行整数、浮点数的加减乘除运算。-Scientific calculator. Expression can be interpreted, for integer, floating-point addition and subtraction, multiplication and division calculations.
  3. 所属分类:Data structs

    • 发布日期:2017-04-13
    • 文件大小:1.89kb
    • 提供者:晴天雨
  1. KMP

    0下载:
  2. kmp算法的程序,效率很高,非常不错,吐血推荐-KMP algorithm procedures, efficient, very good, hematemesis Recommended
  3. 所属分类:Data structs

    • 发布日期:2017-04-10
    • 文件大小:1.04kb
    • 提供者:leokan
  1. DosAvl

    0下载:
  2. 这是一个数据结构的小程序,非递归的avl树实现,用到了穿线法-This is a data structure of small procedures, non-recursive AVL tree realization, using the threading method
  3. 所属分类:Data structs

    • 发布日期:2017-04-14
    • 文件大小:3.07kb
    • 提供者:hanjiasong
  1. datastructureforc++

    0下载:
  2. C++数据结构 -C++ Data structure C++ Data structure
  3. 所属分类:Data structs

    • 发布日期:2017-05-16
    • 文件大小:3.59mb
    • 提供者:李强
  1. shuangxianglianbiao

    0下载:
  2. 昨天同学叫我帮他写个双向链表的程序 于是就随便写了 个 希望大家多提意见-Yesterday, the students asked me to help him write a list of two-way process so he just wrote a hope that we do so
  3. 所属分类:Data structs

    • 发布日期:2017-04-11
    • 文件大小:1.39kb
    • 提供者:jiangyi
  1. ansi917(14)

    0下载:
  2. 大随机数生成器算法的研究与实现.大随机数已经在当今社会的各个领域中都频繁使用,特别是在加密技术中已经成了不可缺少的一部分,像RSA,MD5中随机数成为加密技术的关键。 本设计主要为第3代移动通信系统(3G)提供符合要求的随机数(1024位),首先取得系统时间和RAND()函数所产生的随机数作为最初的随机初值,经过三重DES(两密钥通过MD5算法得来)和异或的变换,保证其随机数的足够随机,然后通过16次的循环得到一个组合起来的1024位随机数,设计还提供一个检验随机数是否随机的平台,采用了均匀
  3. 所属分类:Data structs

    • 发布日期:2017-05-16
    • 文件大小:65.22kb
    • 提供者:瑞力克
  1. DataStructureTest

    0下载:
  2. 数据结构的一些基本的相关的试验,如二叉树的遍历,打印,如排序算法,检索算法,动态结构的静态实现实验-Data structures related to some basic tests, such as binary tree traversal, print, such as sorting algorithms, search algorithms, the dynamic structure of the realization of the experimental static
  3. 所属分类:Data structs

    • 发布日期:2017-04-27
    • 文件大小:204.61kb
    • 提供者:林小峰
  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. C++paixu

    0下载:
  2. 编写一个程序,用菜单选择各种排序算法,对所给数据进行排序,并显示排序前与排序后的结果。-The preparation of a program, using menu to select a variety of sorting algorithms, to data of the sort, and display the sort order before and after results.
  3. 所属分类:Data structs

    • 发布日期:2017-03-27
    • 文件大小:8.63kb
    • 提供者:yyfy
  1. find

    0下载:
  2. 哈希表的建立、查找。设有若干个学生的考试成绩,用学生的学号作为关键字,采用除留余数求哈希地址,将学生的信息存储到该地址空间,并且采用线性探测法解决冲突问题。-The establishment of hash table to find. There are a number of students in examinations, with students as No. keywords used in addition to stay for more than a few hash ad
  3. 所属分类:Data structs

    • 发布日期:2017-03-30
    • 文件大小:3.26kb
    • 提供者:yyfy
  1. C_TREE

    0下载:
  2. 本例题将介绍一种建立二叉树的算法。同时介绍对“遍历算法”灵活应用:将二叉树中每个结点的左右子树进行交换。介绍求二叉树深度的算法。 二叉树的建立是一个递归方法,与二叉树先序遍历思路有点相似。数据的组织是先序遍历的顺序,但是当某结点的某孩子为空时以数据0来充当,也要输入。结合右图的二叉树,其数据的输入顺序应该是: 1 2 4 0 0 0 3 5 0 7 0 0 6 8 0 0 9 0 0。 若当前数据不为0,则申请一个结点存入当前数据。如果输入0表明是空(NULL),不分配结点。递归调用
  3. 所属分类:Data structs

    • 发布日期:2017-04-03
    • 文件大小:3.27kb
    • 提供者:yyfy
  1. C_string

    0下载:
  2. 本程序的串编辑要求对串实现以下四种功能: (1)取子串:从给定串中取出定长的子串; (2)插入:把一个字符串插入到给定串的指定位置; (3)删除:将串中某指定位置开始的若干字符从串中删除; (4)联接串:把一个字符串插入到给定串的最后一个字符之后。-This procedure requires editing the string string to achieve the following four functions: (1) check substring: from
  3. 所属分类:Data structs

    • 发布日期:2017-04-14
    • 文件大小:4.62kb
    • 提供者:yyfy
« 1 2 ... .80 .81 .82 .83 .84 25085.86 .87 .88 .89 .90 ... 28275 »
搜珍网 www.dssz.com