搜索资源列表
parentheses-design
- 假设一个算数表达式中可包含三种括号:圆括号,方括号和花括号且这三种括号可以按任意次序嵌套使用。试利用栈的运算,编写判别表达式中所含括号是否正确配对出现的算法-Suppose an arithmetic expression can contain three brackets: parentheses, brackets and braces and three brackets can be nested in any order. The trial use of the computing
code
- 一个效率还可以的配对堆 Fibonacci Heap太难写了 配对堆可以有效替代Fibonacci Heap 附带了用它实现的Dijkstra 复杂度O(nlogn+e) -An efficient matching can also be hard to heap Fibonacci Heap wrote a pairing heap Fibonacci Heap can be an effective alternative to use it comes with th
SSP
- I implement Dijkstra s Single Source Shortest Path, say SSP, algorithm for directed graphs using a simple data structure, say simple scheme, Fibonacci heaps, say F-heap scheme, and Pairing heaps, say P-heap scheme, and measure the relative performanc
shuju
- 书中使用主流的程序设计语言C++作为具体的实现语言。 书的内容包括表、栈、队列、树、散列表、优先队列、排序、不相交集算法、图论算法、算法分析 、算法设计、摊还分析、查找树算法、k-d树和配对堆等。 -Book using mainstream programming language C++ as a specific implementation language. The book includes tables, stacks, queues, trees, hash tables
Pairingproblems
- 配对问题,在算法中设置一个栈,每读入一个括号,如果是右括号,则置于栈顶的最急迫的期待被消解,如果是左括号,则作为一个新的更急迫的期待压入栈中,使原有的在栈中的所有为消解期待的急迫性降低了一级,在算法开始和结束时,栈都为空。-Pairing problems
fast_user_pairing
- MU-MIMO中的快速用户配对算法的MATLAB程序。-fast user pairing algorithm in MU-MIMO
greedy_user_pairing
- MU-MIMO中的贪婪算法的MATLAB程序。-Greedy user pairing algorithm in MU-MIMO.
PairingHeap
- 配对堆 数据结构与算法分析 in C 按照书中算法实现-Pairing heap Data Structure And Algorithm Analysis In C
checkcharscorrect
- 2、 设计算法判断一个算术表达式的圆括号是否正确配对。 第一个式子: 1*(2+3*(4*(2-1)*(3+x)+5)-6) 能够正确匹配 第二个式子: 1*(2+3*4*(2-1)*(3+x)+5)-6) 不能够正确匹配 -Design algorithm to determine an arithmetic expression in parentheses is correct pairing. The first equation: 1* (2+3* (4* (2-1)*
0479-8023(2012)02-0223-08
- 多PKG环境下无双线性对的基于身份AKA协议0479-8023(2012)02-0223-08-Identity-Based Authenticated Key Agreement Protocols without Bilinear Pairing in Multiple PKG Environments
1206
- Descr iption 对给定一个Pascal源文件,请检查其中 (1)begin与end (2)if,then,else 是否合法配对。-Descr iption given a Pascal source file, check which (1) begin and end (2) if, then, else the legality of pairing.
3.2
- 试写一个判别表达式中开、闭括号是否配对出现的算法。-Try to write a discriminant expression open and close parentheses appear if pairing algorithm.
tongjimimo
- 对统计MIMO 雷达提出了一种映 射搜索配对法来实现在不同观测通道中的目标距离延时和多普勒频率估计值的配对-To propose a statistical MIMO radar mapping Radio search pairing method implemented in different target distances observation channel delay and Doppler frequency estimates pairing
Data_Structure_Code
- 运用基本的数据结构操作,实现简单的功能。其中INVERSE代码实现了一组至多组整形数在单链表中的反序输出操作;mypoly代码实现了多项式在单链表的加减法输出;operation代码实现了利用穿拼接出最大的整形数;括号配对1代码实现了一组至多组括号字符的用顺序栈检查配对情况;身高排序插入代码实现单链表的插入操作。-Using the basic data structure operations to achieve some simple functions. INVERSE code set
kNN
- 用python编写的knn算法,并将其应用到改进约会网站的配对效果和手写识别系统两个实例中。-Written in python knn algorithm and its application to improve the effectiveness and dating sites pairing handwriting recognition systems both instances.
fpRmATLAB
- This project reflects pattern recognition techniques that we’ve studied in course. Our main focus throughout the project was feature extraction. System extracts minutiae points selected image and then performs fingerprint matching based on minutiae p
Readxls
- 读取excel内数据后,对应基因位点的FST值作图,并平滑曲线。(load data in excel format, draw panel with pairing FST value and gene position)
基于miracl库的rate实现
- 基于miracl库实现椭圆曲线算法的优化方法(constructing Tower exensions of finite fields for implementation of pairing Based cryptographyt)
GA
- 遗传算法(Genetic Algorithms,简称 GA)是一种基于自然选择原理和自然遗传机 制的搜索(寻优)算法,它是模拟自然界中的生命进化机制,在人工系统中实现特定目 标的优化。遗传算法的实质是通过群体搜索技术,根据适者生存的原则逐代进化,最终 得到最优解或准最优解。它必须做以下操作:初始群体的产生、求每一个体的适应度、 根据适者生存的原则选择优良个体、被选出的优良个体两两配对,通过随机交叉其染色 体的基因并随机变异某些染色体的基因后生成下一代群体,按此方法使群体逐代进化, 直