搜索资源列表
Algorithm
- 通过时、空复杂度,对算法在具体问题上的性能进行分析。PPT,很适合算法爱好者学习参考-Through time and space complexity of the algorithm in the performance of specific issues for analysis. PPT, lovers learning algorithm is very suitable reference
C
- 二分查找又称折半查找,它是一种效率较高的查找方法。 【二分查找要求】:1.必须采用顺序存储结构 2.必须按关键字大小有序排列。 【优缺点】折半查找法的优点是比较次数少,查找速度快,平均性能好 其缺点是要求待查表为有序表,且插入删除困难。因此,折半查找方法适用于不经常变动而查找频繁的有序列表。 【算法思想】首先,将表中间位置记录的关键字与查找关键字比较,如果两者相等,则查找成功;否则利用中间位置记录将表分成前、后两个子表,如果中间位置记录的关键字大于查找关键字,则进一步查
main2
- 使用c++解决算法中的社会名流问题:找出一组人中,被所有其他人认识,同时不认识其他人的人,算法复杂度为O(n)-Algorithm using c++ to solve the problem of the celebrities: to find a group of people, by all the other people understand, while others who do not know, the algorithm complexity is O (n)
A
- OFDMA系统中低复杂度比例公平资源分配算法(原文+代码)-Adaptive Resource Allocation in Multiuser OFDM Systems With Proportional Rate Constraints
agnes
- 此源程序为层次聚类中AGNES聚类法算法部分,测试数据须自己输入,测试前最好先看下源码 测试数据只有2个属性,可根据自己需求修改数据结构体属性个数,与对象间欧式距离计算函数 本源码若算法复杂度有可改进的地方或有BUG请高手指出,计算500条以上的数据时须耐心等待结果 -The source code for the hierarchical clustering algorithm in part AGNES clustering method, the test data requ
NumberOfK
- 在VC++中实现查找链表倒数第K个元素,采用简单高效的算法,算法复杂度为O(1)-Find the list from the first k elements
Chow
- MIMO-OFDM系统中的自适应算法中的一种。Chow算法是根据各个子信道的信道容量来分配比特的。与Hughes-Hartogs算法相比,没有了大量的搜素和排序,简化了算法复杂度。-MIMO- OFDM systems in one of the adaptive algorithm. Chow algorithm is based on the channel capacity of each channel to allocate bits. Compared with Hughes- Ha
MergeSortedLists
- 对两个链表进行合并排序, 算法复杂度为nlogn-merge two lists sorted
theDesignAndAnalysisOfAlgorithmTest1
- 最大间隙问题和最多约数问题,在算法设计与分析这么课程中学习算法复杂度计算-Maximum clearance and at most a few problems in the algorithm design and analysis of such a course of learning algorithm complexity of computation
longest substring
- 利用C++实现Leetcode题目中的寻找最长子序列问题,即从一个序列中查找符合标准的子序列,算法复杂度和时间复杂度均较好(C++ implementation of the oldest sequence)
7
- 7 基于纹理复杂度和差分的抗盲检测图像隐写算法(7 against blind detection based on texture complexity and difference image steganography algorithm)
5
- 5 基于图像复杂度的数字水印算法digital watermarking algorithm based on image complexity(digital watermarking algorithm based on image complexity)
冒泡排序改进版
- 对冒泡排序进行改进。减少循环次数,降低算法复杂度(Improved bubble sort)
复杂网络算法与应用源程序
- 复杂网络构建模型,可能有小世界模型和无标度网络模型(Most social, biological, and technological networks display substantial non-trivial topological features, with patterns of connection between their elements that are neither purely regular nor purely random. Such features in
milk-master
- 机器学习python类库,机器学习(Machine Learning, ML)是一门多领域交叉学科,涉及概率论、统计学、逼近论、凸分析、算法复杂度理论等多门学科。(Machine learning Python class library)
PCA分析源代码
- PCA主成分分析源代码,PCA是用于降维是经典方法,现在仍有很多人用主成分分析方法进行降维,降低算法复杂度。(PCA is the source code of principal component analysis. PCA is a classical method for dimensionality reduction. Many people still use principal component analysis to reduce dimension and reduce a
Sort
- 计算各个排序算法的时间复杂度,以及给出各个排序算法代码(The time complexity of each sorting algorithm is calculated and the code for each sort algorithm is given)
查找算法
- 分析对比顺序查找和折半查找法的特点,并分析算法时间复杂度;以及哈希表的构造与查找,利用开放 地址法函数处理机制;(Two point lookup method and hash function processing mechanism)
019420
- FFT 算法的动态链接库 自己做的 算法复杂度一般()
算法时间复杂度的实验测试
- 以堆排序算法为例,改变输入规模n,测试算法时间复杂度(Time complexity of algorithm)