Algorithms in C, Parts 1-4_ Fundamentals, Data Structures, Sorting, Searching,算法学习的一本好资源!
2023-02-11 10:36:55 516KB Algorithm
1
Written by an author team of experts in their fields, thisauthoritative guide demystifies even the most difficultmathematical concepts so that you can gain a clear understanding ofdata structures and algorithms in C++. The unparalleled author team incorporates the object-orienteddesign paradigm using C++ as the implementation language, whilealso providing intuition and analysis of fundamentalalgorithms. Offers a unique multimedia format for learning the fundamentalsof data structures and algorithms Allows you to visualize key analytic concepts, learn about themost recent insights in the field, and do data structuredesign Provides clear approaches for developing programs Features a clear, easy-to-understand writing style that breaksdown even the most difficult mathematical concepts Building on the success of the first edition, this new versionoffers you an innovative approach to fundamental data structuresand algorithms.
2023-02-02 01:14:58 21.35MB C++ data structu algorithm
1
这是 ShowMeAI 持续分享的速查表系列!本速查表是《图解算法数据结构》,一图胜千言!这套漫画,覆盖了Big O Notation,Data Structures、Array、Linked List、Stack、Queue、Hash Table、Binary Heap、Binary Search Tree 等知识点,美观且直观。快下载来督促自己学习吧!
2023-01-02 09:23:48 2.24MB 算法 数据结构 列表
1
布什 RBush是用于点和矩形2D空间索引的高性能.NET库。 它基于具有批量插入支持的优化R树数据结构。 空间索引是用于点和矩形的特殊数据结构,它使您可以高效地执行查询,例如“边界框内的所有项目”(例如,比遍历所有项目快数百倍)。 它最常用于地图和数据可视化。 该代码已从Javascript 库复制而来。 安装 使用Nuget进行Install-Package RBush ( Install-Package RBush )。 用法 创建一棵树 首先,定义数据项类以实现ISpatialData ,这要求该类公开Envelope属性。 然后该类可以这样使用: var tree = new RBush < Point>() 构造函数的可选参数( maxEntries:定义树节点中的最大条目数。 9 (默认情况下使用)是大多数应用程序的合理选择。 较高的值表示更快的插入和较慢的搜索,反之亦然。 var tree = new RBush < Point>( maxEntries : 16 ) 新增资料 插入一个项目: var item = new Point { Env
2022-11-14 22:49:45 23KB algorithm data-structures r-tree spatial-index
1
Data Structures and Algorithms in Java 数据结构和算法 第四版 英文版本
2022-10-28 19:37:22 14.81MB Data Structures Algorithms
1
数据结构和算法工作 包含我在佐治亚理工学院 2014 年秋季 CS 1332 课程中用 Java 编写的各种数据结构和算法的存储库
2022-10-25 14:42:24 42.84MB Java
1
数据结构图投资组合分配 使用邻接矩阵或邻接表和各种算法(例如深度优先搜索,广度优先搜索和Dijkstra算法)存储的无向和有向图抽象数据类型的Python3实现。 该项目在2021年冬季季度完成,在Tim Alcon教授的指导下,在OSU的CS 261数据结构课程中完成。 这两个文件中已经提供了各种测试用例。 只需运行: $ ./d_graph.py 或者 $ ./ud_graph.py
2022-10-08 20:29:02 7KB Python
1
布卢姆 该软件包实现了通用用法的布隆过滤器。 它使用FNV和一个简单的技巧来计算所需的k个散列。 特征 初始化Bloom Filter仅需要过滤器的大小和哈希函数的数量。 使用Uint8Array TypedArray来确保最小的内存占用。 使用位操作对我们的位集进行操作意味着更好的性能(需要进行一次测试)。 FNV哈希和简单的线性哈希用作哈希函数。 可以通过将不同的元素类型(数字,字符串)转换为字符串来插入它们。 用法 const BloomFilter = require ( 'bloomf' ) ; const filterSize = 10 ; const kHashes = 3 ; const bl = new BloomFilter ( filterSize , kHashes ) ; bl . insert ( 3 ) ; bl . insert ( "bloblo"
1
CS 61B Data Structures, Spring 2021课件
2022-09-24 17:07:06 63.06MB CS61B
1
Data Structures and Algorithms in Java 6th Edition.2014.pdf数据结构与算法 纯英文 java
2022-09-12 01:26:37 9.34MB 数据结构 算法 java 英文版
1