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

搜索资源列表

  1. orderTree

    0下载:
  2. 1.编制构建二叉排序树的程序,并使用一组数据进行验证。 2.实现二叉排序树的查找算法,计算一组输入数据的查找长度。 3.编制构建平衡二叉树的程序,计算一组输入数据的查找长度 . 程序执行的命令包括: (1)输入构造二叉搜索树的文件名来构造二叉排序树 (2)输入要进行查找的文件名 (3)由计算机终端显示各个数据的查找长度和总的查找长度、平均查找长度 (4)结束 -1. Preparation of building a binary sort tree procedur
  3. 所属分类:Data structs

    • 发布日期:2017-04-13
    • 文件大小:2498
    • 提供者:sanghy
  1. BinarySearchTree

    0下载:
  2. 这个文件提供的C++代码实现的二叉搜索树。这是一种高效的数据结构。非常有参考价值。-The file is about binary search tree.It is implemented with C++ language.This structur is very efficient.
  3. 所属分类:Windows Develop

    • 发布日期:2017-04-12
    • 文件大小:1357
    • 提供者:刘志福
  1. bstcnt(1)

    0下载:
  2. 二叉搜索树(Binary Search Tree)是满足如下性质的二叉树: ①若它的左子树非空,则左子树上所有结点的值均小于根结点的值; ②若它的右子树非空,则右子树上所有结点的值均大于根结点的值; ③左、右子树本身又各是一棵二叉搜索树。-Binary Search Tree (Binary Search Tree) is to meet the nature of the binary tree as follows: ① If its non-empty left subtree
  3. 所属分类:Windows Develop

    • 发布日期:2017-04-02
    • 文件大小:190221
    • 提供者:czjy
  1. DataStructureAlgorithm

    0下载:
  2. 数据结构和算法,非常经典,讲的很详细!第一部分 基础知识 第一章 C++程序设计 第二章 程序性能 第二部分 数据结构 第三章 数据描述 第四章 数组和矩阵 第五章 堆栈 第六章 队列 第七章 跳表和散列 第八章 二叉树和其他树 第九章 优先队列 第十章 竞赛树 第十一章 搜索树 第十二章 图 第三部分 算法设计方法 第十三章 贪婪算法 第十四章 分而治之算法 第十五章 动态规划 第十六章 回
  3. 所属分类:Data structs

    • 发布日期:2016-08-26
    • 文件大小:17229762
    • 提供者:孙继磊
  1. 2cha

    0下载:
  2. 建立二叉搜索树、实现其删除算法,数据结构课用,参考-tree
  3. 所属分类:Data structs

    • 发布日期:2017-04-11
    • 文件大小:1408
    • 提供者:杜诺桑
  1. heap

    0下载:
  2. 简单的小程序,实现堆排序,输出二叉搜索树等功能-heap
  3. 所属分类:Document

    • 发布日期:2017-04-12
    • 文件大小:599
    • 提供者:Constancy
  1. Red-Black-Tree

    0下载:
  2. 红黑树(Red-Black Tree)是二叉搜索树(Binary Search Tree)的一种改进-Red-Black Tree
  3. 所属分类:Data structs

    • 发布日期:2017-03-29
    • 文件大小:188484
    • 提供者:张伟
  1. RedBlackTree

    0下载:
  2. 红黑树、二叉搜索树的实现和性能比较。因为实验要求指定了输入哪些数据,所以在实现时我用了一个数组将所有的数据保存到内存里,然后直接调用插入和删除操作,这样就不再需要用户输入数据,省去了输入数据的麻烦。删除操作也是在程序里直接调用的,不要用户输入。-red black tree
  3. 所属分类:Data structs

    • 发布日期:2017-03-30
    • 文件大小:251633
    • 提供者:何雯
  1. sebinarytree

    0下载:
  2. 主要实现的功能是二叉搜索树的实现,程序比较简单,但是还行-The function of the program is give your idea of the search binary tree
  3. 所属分类:Other windows programs

    • 发布日期:2017-04-01
    • 文件大小:352779
    • 提供者:梦幻使者
  1. myvtree

    0下载:
  2. 此源码实现了二叉搜索树的生成及输出排序后的结果-This source code implements a binary search tree generation and output the results sorted
  3. 所属分类:Windows Kernel

    • 发布日期:2017-05-06
    • 文件大小:1246447
    • 提供者:童杰
  1. BinarySearchTree

    0下载:
  2. 设S=(x1,x2,…,xn)是有序集,且x1<x2<…<xn ,表示有序集S的二叉搜索树, 利用二叉树的结点存储有序集中的元素。且已知其存取概率分布为(a1,a2,…,an),求在所有表示有序集的二叉树中找出一棵具有最小平均路长的二叉搜索树问题。-Set S = (x1, x2, ..., xn) is an ordered set, and x1 <x2<…<xn ,表示有序集S的二叉搜索树, 利用二叉树的结点存储有序集中的元素。且已知其存取概率分布为(a
  3. 所属分类:Data structs

    • 发布日期:2017-04-10
    • 文件大小:781
    • 提供者:jj
  1. tree-java

    0下载:
  2. 用java写的二叉搜索树的小例子,初学者看的代码-Written with java binary search tree small example, look at the code for beginners
  3. 所属分类:Java Develop

    • 发布日期:2017-03-29
    • 文件大小:1985
    • 提供者:徐锦来
  1. ch07_Search

    0下载:
  2. 搜索结构,包括静态搜索结构、二叉搜索树、AVL最优树-ch07_Search.rar
  3. 所属分类:Data structs

    • 发布日期:2017-05-04
    • 文件大小:1264256
    • 提供者:李金光
  1. searchBST

    0下载:
  2. 二叉搜索树实现的文本文件单词索引表,可将文本中单词按字母顺序列出并且列出每个单词在文本中出现的次数-Binary search tree implementation of the text file the word index table, you can text the word list in alphabetical order and each word in the text are listed in the number of occurrences
  3. 所属分类:Data structs

    • 发布日期:2017-04-05
    • 文件大小:140722
    • 提供者:yexianshow
  1. AVLTree

    0下载:
  2. 平衡二叉树。高效的搜索算法。生成深度最小的二叉搜索树。在大量数据中最快实现搜索。-Balanced binary tree. Efficient search algorithm. Generated the smallest depth binary search tree. Large amounts of data to achieve the fastest in the search.
  3. 所属分类:Data structs

    • 发布日期:2017-04-03
    • 文件大小:16709
    • 提供者:lily
  1. BinarySearchTree

    0下载:
  2. 一个简单的二叉搜索树实现,可以直接使用头文件移植-A simple binary search tree implementation can use the header files transplant
  3. 所属分类:Data structs

    • 发布日期:2017-04-09
    • 文件大小:1500
    • 提供者:夏治文
  1. AVLtree

    0下载:
  2. 二叉搜索树的avl树问题,创建avl树及有关的问题-Binary search tree avl tree problem, create avl trees and related problems
  3. 所属分类:Other systems

    • 发布日期:2017-04-04
    • 文件大小:8642
    • 提供者:xzc
  1. Binarysearch

    0下载:
  2. 二叉搜索树的初建及有关问题binary search tree -Binary search tree and the problem was first built binary search tree
  3. 所属分类:Other systems

    • 发布日期:2017-04-05
    • 文件大小:6860
    • 提供者:xzc
  1. Translationcircuitconnectionproblems

    0下载:
  2. 二叉搜索树中的电路连线问题 Binary search tree -Binary search tree in the circuit connection problems Binary search tree
  3. 所属分类:Other systems

    • 发布日期:2017-04-09
    • 文件大小:3086
    • 提供者:xzc
  1. Translationpackingproblem

    1下载:
  2. 二叉搜索树中的装箱问题Binary search tr-Binary search tree packing problem Binary search tree
  3. 所属分类:Other systems

    • 发布日期:2017-04-06
    • 文件大小:9542
    • 提供者:xzc
« 1 2 3 45 6 7 8 9 10 ... 15 »
搜珍网 www.dssz.com