虫虫首页| 资源下载| 资源专辑| 精品软件
登录| 注册

Tree-Structured

  • Joomla收费插件。建立商业登记

    Joomla收费插件。建立商业登记,商品,广告,房地产,文件目录 Mosets Tree is the only directory component for Joomla! that allows you to run large directory website with customizable templates, user ratings, Search Engine Friendly URLs and more. Fast, Simple and Flexible. Price: $110 USD

    标签: Joomla 收费 插件

    上传时间: 2016-10-20

    上传用户:钓鳌牧马

  • 做网格的好程序

    做网格的好程序,PARAMESH is a package of Fortran 90 subroutines designed to provide an application developer with an easy route to extend an existing serial code which uses a logically cartesian structured mesh into a parallel code with adaptive mesh refinement(AMR).

    标签: 网格 程序

    上传时间: 2014-01-06

    上传用户:坏坏的华仔

  • 这个是严蔚敏版的数据结构上机教程中的部分源代码

    这个是严蔚敏版的数据结构上机教程中的部分源代码,都是自己写的,包括最短路径的dijkstra,floyd,最小生成树的prim,kruskal以及链表,Huffman Tree等等的c++代码

    标签: 数据结构 教程 源代码

    上传时间: 2014-01-23

    上传用户:jhksyghr

  • 本目录下的源代码均属示例、教学性质。作者不对这些代码的功能和性能作任何担保或承诺。 -------- 功能说明 -------- 本目录下的程序用8种不同的方式实现了Huffman编码

    本目录下的源代码均属示例、教学性质。作者不对这些代码的功能和性能作任何担保或承诺。 -------- 功能说明 -------- 本目录下的程序用8种不同的方式实现了Huffman编码算法,这8种方式分别是 * huffman_a 使用链表结构生成Huffman树的算法,这是最基本的实现方法,效率最低。 * huffman_b 使用《数据结构》(严蔚敏,吴伟民,1997,C语言版)中给出的算法,将二叉树存放在连续空间里(静态链表),空间的每个结点内仍有左子树、右子树、双亲等指针。 * huffman_c 使用Canonical Huffman编码,同时对huffman_b的存储结构进行改造,将二叉树存放在连续空间tree里,空间的每个结点类型都和结点权值的数据类型相同,空间大小为2*num,tree[0]未用,tree[1..num]是每个元素的权值,生成Huffman后,tree[1..2*num-1]中是双亲结点索引。 * huffman_d 在huffman_c的基础上,增加预先排序的功能先用QuickSort算法对所有元素的权值从小到大排序,这样,排序后最前面的两个元素就是最小的一对元素了。我们可以直接将它们挑出来,组合成一个子树。然后再子树的权值用折半插入法插到已排序的元素

    标签: Huffman 目录 源代码 代码

    上传时间: 2013-12-20

    上传用户:franktu

  • 自己做的数据结构实验题(合并链表

    自己做的数据结构实验题(合并链表,huffman tree,表达式求值)

    标签: 数据结构 实验 合并

    上传时间: 2016-12-31

    上传用户:redmoons

  • 专家点评: Y P7 `. @ {$ r% pa.功能很强大

    专家点评: Y P7 `. @ {$ r% pa.功能很强大,可以看出花了很多心血在算法上,非常好。算法上还有一点瑕疵,例如在删除一个员工的同时没有办法自动建立其他员工的上下级关系,必须删除全部下级员工,不是非常合理。此外,界面设计过于简单,应该加强. " W" R+ b* g$ a$ Sb.程序运用了自己的算法来提高Tree控件显示的速度和资源分配,这个非常值得肯定和鼓励。* C. c4 D0 e9 ` J$ w# U c.基本实现所有规定的功能,在所有参赛者中唯一熟 : O) l- F6 F9 f) S7 Q. l练使用面向对象设计方式开发程序的工程师,很不错!程序体现了作者非常扎实的数据结构功底,值得大家学习。工程管理也做得非常好,体现了作者在软件工程方面也有很深入的研究,该代码是很好的学习范例。 % G* H$ ~3 W1 ]. e! id.算法的创新是独特之处(hashtable算法建立),可见作者在数据结构方面的熟练掌握.此程序是很多专家会员学习典范.

    标签: P7 pa

    上传时间: 2017-01-19

    上传用户:奇奇奔奔

  • The combinatorial core of the OVSF code assignment problem that arises in UMTS is to assign some no

    The combinatorial core of the OVSF code assignment problem that arises in UMTS is to assign some nodes of a complete binary tree of height h (the code tree) to n simultaneous connections, such that no two assigned nodes (codes) are on the same root-to-leaf path. Each connection requires a code on a specified level. The code can change over time as long as it is still on the same level. We consider the one-step code assignment problem: Given an assignment, move the minimum number of codes to serve a new request. Minn and Siu proposed the so-called DCAalgorithm to solve the problem optimally. We show that DCA does not always return an optimal solution, and that the problem is NP-hard. We give an exact nO(h)-time algorithm, and a polynomial time greedy algorithm that achieves approximation ratio Θ(h). Finally, we consider the online code assignment problem for which we derive several results

    标签: combinatorial assignment problem arises

    上传时间: 2014-01-19

    上传用户:BIBI

  • 1. 异常和标准C 对它的支持 (前言略) 1.1 异常分类 基于Dr. GUI 的建议

    1. 异常和标准C 对它的支持 (前言略) 1.1 异常分类 基于Dr. GUI 的建议,我把我的第一个专栏投入到“程序异常”的系列上。我认识到, “exception”这个术语有些不明确并和上下文相关,尤其是C++标准异常(C++ standard exceptions)和Microsoft 的结构化异常(structured exception handling)。不幸的的是, “异常”一词太常见了,随时出现在语言的标准和常见的编程文献中。因为不想创造一个新 名词,所以我将尽力在此系列的各部分中明确我对“异常”的用法。 􀁺 Part 1 概述通常意义上的异常的性质,和标准C 库提供的处理它们的方法。 􀁺 Part 2 纵览Microsoft 对这些标准C 库方法的扩展:专门的宏和结构化异常处理。 􀁺 Part 3 及其余将致力于标准C++异常处理体系。 (C 语言使用者可能在Part2 后放弃,但我鼓励你坚持到底;我所提出的许多点子同样 适用于C,虽然不是很直接。)

    标签: 1.1 GUI Dr 标准

    上传时间: 2014-01-13

    上传用户:aappkkee

  • Huffman codes 􀂄 In telecommunication, how do we represent a set of messages, each with an

    Huffman codes 􀂄 In telecommunication, how do we represent a set of messages, each with an access frequency, by a sequence of 0’s and 1’s? 􀂄 To minimize the transmission and decoding costs, we may use short strings to represent more frequently used messages. 􀂄 This problem can by solved by using an extended binary tree which is used in the 2- way merging problem.

    标签: telecommunication represent messages Huffman

    上传时间: 2014-01-04

    上传用户:x4587

  • 读取XML信息

    读取XML信息,显示在tree上。并且提供各种控制功能

    标签: XML 读取

    上传时间: 2013-12-19

    上传用户:gououo