您好,欢迎光临本网站![请登录][注册会员]  

搜索资源列表

  1. Union-Find: A Data Structure for Disjoint Set Operations

  2. Union-Find: A Data Structure for Disjoint Set Operations
  3. 所属分类:其它

    • 发布日期:2010-06-20
    • 文件大小:622592
    • 提供者:budTang
  1. 数据结构--并查集(Union-Find Sets)

  2. 数据结构并查集的相关资料,包括几篇并查集的论文,还有POJ上面几道关于并查集的题目的源代码
  3. 所属分类:C/C++

    • 发布日期:2011-05-14
    • 文件大小:349184
    • 提供者:sheduoxuan
  1. Advanced Data Structures

  2. Advanced Data Structures presents a comprehensive look at the ideas, analysis, and implementation details of data structures as a specialized topic in applied algorithms. This book examines efficient ways to realize query and update operations on se
  3. 所属分类:C

    • 发布日期:2011-07-10
    • 文件大小:2097152
    • 提供者:zhubupt
  1. 数据结构(English)

  2. • Introduction /Mathematical Background 1 /Java Review 1 /Java Review 2 /Java Collections /Mathematical Background 2 /Proof by Induction /Lists /Stacks and Queues /Priority Queues /Heapsort /Hashing /Trees /AVL Trees /B-Trees /Sorting /Huffman Codin
  3. 所属分类:Java

    • 发布日期:2008-06-06
    • 文件大小:3145728
    • 提供者:yanjianhua1106
  1. 迷宫 java 并查 union find

  2. 利用数据结构中的并查集结构,根据输入的迷宫的行数和列数,自动生成迷宫。
  3. 所属分类:Java

    • 发布日期:2012-09-11
    • 文件大小:6144
    • 提供者:lp895876294
  1. Advanced Data Structures - Peter Brass

  2. 清晰英文原版 目录节选 1 Elementary Structures 1 1 1 Stack 1 1 2 Queue 8 1 3 Double Ended Queue 16 1 4 Dynamical Allocation of Nodes 16 1 5 Shadow Copies of Array Based Structures 18 2 Search Trees 23 2 1 Two Models of Search Trees 23 2 2 General Properties an
  3. 所属分类:其它

    • 发布日期:2014-08-01
    • 文件大小:1048576
    • 提供者:bjty_kdjfk
  1. Advanced Data Structures

  2. 里面讲述了许多特殊的索引树结构,推荐! Preface page xi 1 Elementary Structures 1 1.1 Stack 1 1.2 Queue 8 1.3 Double-Ended Queue 16 1.4 Dynamical Allocation of Nodes 16 1.5 Shadow Copies of Array-Based Structures 18 2 Search Trees 23 2.1 Two Models of Search Trees 23 2
  3. 所属分类:其它

    • 发布日期:2008-11-28
    • 文件大小:2097152
    • 提供者:minghao2005
  1. LeetCode最全代码

  2. # [LeetCode](https://leetcode.com/problemset/algorithms/) ![Language](https://img.shields.io/badge/language-Python%20%2F%20C++%2011-orange.svg) [![License](https://img.shields.io/badge/license-MIT-blue.svg)](./LICENSE.md) ![Progress](https://img.shi
  3. 所属分类:C++

    • 发布日期:2017-04-09
    • 文件大小:4458150
    • 提供者:userwjw
  1. Union-find压缩路径最小生成树

  2. 利用Union-find算法实现路径压缩最小生成树,使用c编写
  3. 所属分类:C/C++

    • 发布日期:2018-01-10
    • 文件大小:2048
    • 提供者:qq_40932647
  1. million_nodes.txt

  2. 内含100万个节点,可用于计算连通分量的各类算法(Union-Find、Quick-Find等)的测试。
  3. 所属分类:软件测试

    • 发布日期:2018-03-26
    • 文件大小:27262976
    • 提供者:qq_37653144
  1. 基于Union-Find的Kruskal算法C++实现

  2. 基于Union-Find数据结构实现Kruskal求最小生成树,代码设计及变量命名附详细注释。
  3. 所属分类:C/C++

    • 发布日期:2018-05-14
    • 文件大小:99328
    • 提供者:qq_36968556
  1. 西安电子科技大学《算法设计与分析》上机题

  2. 西安电子科技大学《算法设计与分析》上机题。渗透问题(Percolation) 使用合并-查找(union-find)数据结构,编写程序通过蒙特卡罗模拟(Monte Carlo simulation)来估计渗透阈值的值。
  3. 所属分类:Java

    • 发布日期:2018-12-20
    • 文件大小:156672
    • 提供者:weixin_41928248
  1. 普林斯顿算法课程 Robert Sedgewick

  2. 普林斯顿算法课程视频资源,这是一门经典的数据结构与算法课,免费,分上下两部分,上部分内容包括Union-Find, basic data structures(Array, LinkedList, Queue, Stack, prioprity queue, symbol table...), sorting algorithms (selection sort, insertion sort, shell sort, quick sort, merge sort, heap sort), s
  3. 所属分类:讲义

    • 发布日期:2019-05-25
    • 文件大小:73728
    • 提供者:sutungpo
  1. Advanced Data Structures

  2. Advanced Data Structures presents a comprehensive look at the ideas, analysis, and implementation details of data structures as a specialized topic in applied algorithms. Data structures are how data is stored within a computer, and how one can go a
  3. 所属分类:其它

    • 发布日期:2019-08-06
    • 文件大小:1048576
    • 提供者:zjliu198401
  1. C++利用map实现并查集

  2. 并查集(Union-Find)是一种树型的数据结构,用于处理一些不相交集合(Disjoint Sets)的合并及查询问题。 并查集存在两个操作(1.Union 联合 2.finddeputy 查找代表结点) 和一个需要解答的问题( issameset 是否 在一个集合中,或者说是否有同一个代表结点)。 利用map实现主要通过两个map的对象 ,一个map类型的fathermap,关键字为子结点,值为其父结点(父结点不一定就是代表结点),当我们需要查找两个两个元素是否在一个集合中时,只需一直向上找
  3. 所属分类:其它

    • 发布日期:2020-12-17
    • 文件大小:39936
    • 提供者:weixin_38586186
  1. c语言数据结构之并查集 总结

  2. 并查集(Union-Find Set): 一种用于管理分组的数据结构。它具备两个操作:(1)查询元素a和元素b是否为同一组 (2) 将元素a和b合并为同一组。 注意:并查集不能将在同一组的元素拆分为两组。 并查集的实现: 用树来实现。 使用树形结构来表示以后,每一组都对应一棵树,然而我们就可以将这个问题转化为树的问题了,我们看两个元素是否为一组我们只要看这两个元素的根是否一致。显然,使用树形结构将问题简单化了。合并时是我们只需要将一组的根与另一组的根相连即可。 并查集的核心在于,一棵树的所有节
  3. 所属分类:其它

    • 发布日期:2020-12-31
    • 文件大小:88064
    • 提供者:weixin_38747917
  1. SW练习_union_find算法

  2. 带权重的union_find可以有效降低树的高度,从而提高效率 package com.company; /** * meng3.wei * 2020.02.16 * 带权重的union-find * 带权重,可以保证小的树会被挂在大的树上,以保证树不会太高(随机挂载由于树的高度问题,性能会变低) */ public class UnionFind { private int count;//连通分量的个数 private int[] pid;//保存父亲连接节点的i
  3. 所属分类:其它

    • 发布日期:2021-01-06
    • 文件大小:26624
    • 提供者:weixin_38650508
  1. Articles:文档和源代码。 关于如何开始学习算法和csharp。 如果您具有CC ++或其他编程语言知识,则很容易理解-C language program source code

  2. 介绍 这些文章是我的编程学习笔记。 它们大多数与书籍或网络结合在一起。 别人是我自己的作品。 它们不仅介绍如何获取的逻辑,而且还展示了Java或csharp上的源代码。 点击快速指南: 内容 第一部分:算法 01--质算法#01--素数和牛顿继承法求平方根 02-- 那契序列算法#02--斐波那契Fibonacci数列算法优化 算法#03--详解最小二乘法原理和代码 04-- 算法算法#04--详解高斯牛顿继承法原理和代码 法 05-- 算法#05--神作:深浅出 06-- 算法#06--基
  3. 所属分类:其它

    • 发布日期:2021-03-25
    • 文件大小:49283072
    • 提供者:weixin_42128988
  1. Disjoint-Sets-using-Union-Find:使用联合查找和树进行路径压缩的不相交集-源码

  2. Disjoint-Sets-using-Union-Find:使用联合查找和树进行路径压缩的不相交集
  3. 所属分类:其它

    • 发布日期:2021-03-16
    • 文件大小:1024
    • 提供者:weixin_42116604
  1. unionfind:Go中带有路径压缩的加权Union Find数据结构的惯用实现-源码

  2. 联合发现 加权Union Find数据结构的惯用实现,其中包含路径压缩功能。 安装 $ go get github.com/theodesp/unionfind 用法 // Initialize with size uf := unionfind . New ( 10 ) // Union a,b connects components at index a and b uf . Union ( 1 , 2 ) uf . Union ( 2 , 3 ) uf . Union ( 5 , 6 )
  3. 所属分类:其它

    • 发布日期:2021-02-05
    • 文件大小:6144
    • 提供者:weixin_42112685
« 12 3 4 5 »