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

搜索资源列表

  1. DataStructure-Graph

    0下载:
  2. 纯C写的图操作的一些程序,对于初学数据结构的朋友了解图的一些性质有很大帮助.程序很简洁明了,文本选择界面,无图形界面.-write pure C plans to operate some of the procedures, data structure for the novice friends to understand the nature of the map will be of great help. procedures are clear and concise text s
  3. 所属分类:数据结构常用算法

    • 发布日期:2008-10-13
    • 文件大小:2.11kb
    • 提供者:wei
  1. EX14

    0下载:
  2. 设置一个静态堆栈,编写它的基本操作后,在图类型设计时,构造一个最短路径矩阵和一个最短路径长度矩阵,使用FLOYD算法得出最短路径后,利用堆栈的性质输出最短路径和最短路径长度-Set up a static stack, the preparation of its basic operation, the type of design in the plan, construct a shortest path matrix and a shortest path length matrix,
  3. 所属分类:Data structs

    • 发布日期:2017-04-01
    • 文件大小:1.15kb
    • 提供者:龙悦心
  1. TestFind

    0下载:
  2. 实现文本格式文件中的括号匹配. 匹配算法采用堆栈来实现. 文件读取异常还需完善的人性化一些-Text format documents matching brackets. Matching algorithm uses the stack to achieve. Paper anomaly needs to be well-read human nature of some `` ``
  3. 所属分类:Data structs

    • 发布日期:2017-04-13
    • 文件大小:2.13kb
    • 提供者:lee
  1. decare_tree

    0下载:
  2. 有一种特殊的二叉树被称为笛卡尔树,这种二叉树的每个结点都有两个关键码,记为key1和key2。现在给你一组关键码,每组关键码用二个整数表示,要求构造一棵同时满足下列两个性质的笛卡尔树:   只考虑这棵笛卡尔树的第一关键码,它是一棵排序二叉树。   只考虑这棵笛卡尔树的第二关键码,它们满足类似于最小堆的性质,即任意一个父结点的第二关键码都比它的子结点的第二关键码小。 -There is a special kind of binary tree is called Cartesi
  3. 所属分类:Data structs

    • 发布日期:2017-03-31
    • 文件大小:632byte
    • 提供者:孙巍巍
  1. 090619

    0下载:
  2. 理解二叉树特别是完全二叉树的性质,掌握二叉树的存储结构(二叉链表);熟练掌握二叉树的常用操作算法(初始化、插入结点、删除结点、遍历等);初步掌握二叉树的应用。-Binary tree in particular, to understand fully the nature of binary tree, binary tree master storage structure (List Binary) proficiency in commonly used binary tree alg
  3. 所属分类:Data structs

    • 发布日期:2017-04-14
    • 文件大小:2.58kb
    • 提供者:瑞稀
  1. chuangxinjijing

    0下载:
  2. 平方幻方的程序实现 (1)研究了幻方和平方幻方的性质。写出了1—n*n的幻方程序 (2)明白要写这样的程序,需要用蛮力法来加以解决,这样对问题的解决带有极大的盲目性,完全是一个NP问题。 -Square magic square program (1) studied the magic square and the square of the nature of magic squares. Write a 1-n* n magic square of the procedure
  3. 所属分类:Data structs

    • 发布日期:2017-03-31
    • 文件大小:43.42kb
    • 提供者:彭成义
  1. he_fu_man_bian_ma

    0下载:
  2. 假设一个文件中出现了8种符号S0,SQ,S2,S3,S4,S5,S6,S7,那么每种符号要编码,至少需要3bit。假设编码成000,001, 010,011,100,101,110,111。那么符号序列S0S1S7S0S1S6S2S2S3S4S5S0S0S1编码后变成 000001111000001110010010011100101000000001,共用了42bit。我们发现S0,S1,S2这3个符号出现的频率比较大,其它符号出现的频率比较小,我们采用这样的编码方案:S0到S7的码辽分别01
  3. 所属分类:Data structs

    • 发布日期:2017-03-24
    • 文件大小:227.36kb
    • 提供者:谭毅
  1. hw2

    0下载:
  2. 按递增顺序找到二叉排序树中的底k个小的结点的函数,实现插入新的数据场之值,并保持二叉树的的性质不变的函数-By increasing order of binary sort tree to find the bottom in a small k-node function, insert a new data field to achieve the value and nature of the binary tree to maintain the same function
  3. 所属分类:Data structs

    • 发布日期:2017-04-09
    • 文件大小:3kb
    • 提供者:茹嫣
  1. 2

    0下载:
  2. 二叉排序树的创建与使用 (时间限制为:1000毫秒) 描述: 二叉排序树的定义是:或者是一棵空树,或者是具有下列性质的二叉树:(1)若它的左子树不空,则左子树上所有的结点值均小于它的根结点的值;(2)若它的右子树不空,则右子树上所有结点的值均大于或等于它的根结点的值;(3)它的左右子树也分别为二叉排序树。现要求根据输入的元素值,构造一棵二叉排序树,并输出其先序遍历、中序遍历和后序遍历结果。 输入: 输入第一行为测试用例个数n,接下来为n个测试用例,每个测试用例占两
  3. 所属分类:Data structs

    • 发布日期:2017-04-04
    • 文件大小:969byte
    • 提供者:zhoupenghua
  1. LCS

    0下载:
  2. LCS问题具有最优子结构和重叠子问题的性质,因此采用动态规划算法自底向上计算该问题的解,并输出求到的LCS。-LCS problem with sub-optimal substructure and overlapping nature of the problem, so a bottom-up dynamic programming algorithm for computing the solution of the problem, and the output request to
  3. 所属分类:Data structs

    • 发布日期:2017-04-02
    • 文件大小:832byte
    • 提供者:zhdxch
  1. Treap

    0下载:
  2. Treap C++模板类 实现了treap数据结构 同时具有堆和二叉树的性质-Treap C++ template class implements the treap data structure of both the nature of the heap and binary tree
  3. 所属分类:Data structs

    • 发布日期:2017-03-31
    • 文件大小:1.72kb
    • 提供者:nigoe
  1. princess_1

    0下载:
  2. 骑士救公主(问题本质为迷宫问题) 地图由‘.’ ,‘#’,n(0≤n≤9)三种符号构成,‘.’表示平地骑士可以进入,‘#’表示陷阱骑士不能进入,n表示该方格有一个生命力为n的怪物,骑士需要花费n秒时间才能消灭它。 -Knight rescue the princess (nature of the problem for the maze problem) map by the ' .' ,' #' , N (0 ≤ n ≤ 9) constitute the
  3. 所属分类:Data structs

    • 发布日期:2017-04-10
    • 文件大小:1.08kb
    • 提供者:wmj
  1. Generic-function

    0下载:
  2. 泛型函数: 总结:使用标准模板库 (STL) C++标准库提供了更为安全,更为灵活的数据集处理方式。 STL的最主要的两个特点:数据结构和算法的分离,非面向对象本质。 访问对象是通过象指针一样的迭代器实现的;容器是象链表,矢量之类的数据结构,并按模板方式提供; 算法是函数模板,用于操作容器中的数据。由于STL以模板为基础,所以能用于任何数据类型和结构。-Generic function: Summary: Using the Standard Template Library
  3. 所属分类:Data structs

    • 发布日期:2017-04-03
    • 文件大小:739.2kb
    • 提供者:fdsf
  1. tree

    0下载:
  2. 用C实现数据结构中的树和二叉树,实现了树和二叉树的基本性质。-Data structure using C and the binary tree to realize the fundamental nature of the tree and binary tree.
  3. 所属分类:Data structs

    • 发布日期:2017-04-10
    • 文件大小:1.18mb
    • 提供者:高利伟
  1. HuffmanTree

    0下载:
  2. 这是利用huffman树将数据进行编码,根据huffman树的性质和功能,可以快速有效地查找信息和存储信息-This is used to encode the data huffman tree, according to the nature and function of huffman tree, you can find information quickly and efficiently and store information
  3. 所属分类:Data structs

    • 发布日期:2017-05-17
    • 文件大小:4mb
    • 提供者:Annette
  1. project

    0下载:
  2. 数据结构里面的栈的性质的代码,包括栈顶共享栈,出栈,入栈-Data structure inside the stack nature of the code, including stack shared stack, stack, stack
  3. 所属分类:Data structs

    • 发布日期:2017-04-07
    • 文件大小:933.54kb
    • 提供者:孙文胤
  1. 07

    0下载:
  2. 用堆栈实现0-1背包问题,以此了解递归实现的栈本质-0-1 knapsack problem with the stack implementation, in order to understand the recursive nature of stacks
  3. 所属分类:Data structs

    • 发布日期:2017-04-10
    • 文件大小:770byte
    • 提供者:猫熊
  1. stack

    0下载:
  2. 此程序算法主要实现中缀表达式转换为后缀表达式,后缀表达式的计算,主要利用栈的性质。-The main achievement of this program algorithm infix expressions into postfix expressions, postfix expression is evaluated, the main advantage of the nature of the stack.
  3. 所属分类:Data structs

    • 发布日期:2017-05-02
    • 文件大小:559.95kb
    • 提供者:刘培娜
  1. Noname1

    0下载:
  2. 设线性表存放在向量A[arrsize]的前elenum个分量中,且递增有序。试设计一算法,将x插入到线性表的适当位置上,以保持线性表的有序性。-Let the linear vector table is stored in A [arrsize] elenum a component in the first, and increasing order. Design a test algorithm, the linear form x into the proper position to
  3. 所属分类:Data structs

    • 发布日期:2017-03-23
    • 文件大小:1.51kb
    • 提供者:hjm
  1. the-nature-of-the-code

    0下载:
  2. 离散数学中的输入一个关系矩阵判断有什么性质代码-Discrete Mathematics enter a relationship matrix to determine the nature of the code
  3. 所属分类:Data structs

    • 发布日期:2017-03-28
    • 文件大小:132.08kb
    • 提供者:魏小刚
« 12 »
搜珍网 www.dssz.com