搜索资源列表
bwc.rar
- 搜索算法部分使用minmax递归,alphabeta剪枝,初期和中期搜索6层,最后部分搜索15层。评估算法主要是最小行动力,加以位置值的相关判断
calculator_vckbase.zip
- 该类有以下特点: 1.支持字符串中含有各种常用函数,如"7.5+sin(6*ln(8))/exp(5)" 2.具有很好的纠错能力,能检查出表达式中括号是否配对、库函数是否正确 3.运算过程中能检查并判断出各种异常,如除数为0、开方函数sqrt(x)中x<0,反余弦函数acos(x)中的x<-1或x>1等 4.支持积分、求方程,算术表达式中可含有x,计算时将用类中的成员变量xx代替
二元关系性质判断器
- 离散数学二元关系性质判断器(源码及报告)-Discrete Mathematics dual nature of the relationship judgment (source and the report)
怎样判断一个指针指向的对象是否已经被析构
- 怎样判断一个指针指向的对象是否已经被析构,很好的学习C++的资料-how to decide a pointer at whether the target has been Destructors, good learning C information
判断素数的个数
- 判断101-200之间有多少个素数,并输出所有素数。 1.程序分析:判断素数的方法:用一个数分别去除2到sqrt(这个数),如果能被整除, 则表明此数不是素数,反之是素数。 -judgment 101-200 between the number of primes, and the export of all prime numbers. 1. Program Analysis : judgment in several ways : with a few were t
判断闰年1
- 判断闰年用c++写的,我也才学-judgment leap year with c write, and I barely
判断质数
- 一个很简单的判断一个数是否为质数,C语言编写,编译通过。
Connection
- 这程序是关系性质的判断,它能判断自反,对称,传递三种关系性质。这是学完《离散数学》后课程设计中的一个题目,我自己写的。-This procedure is to determine the nature of the relationship, it can determine the reflexive, symmetrical, three pass nature of the relationship. This is End of Study " Discrete Mathema
computational_geometry
- 一些计算几何的算法,两点确定圆,判断点在多边形内,判断点在线段上,判断点在圆内,判断线段相交,判断线段在多边形内,球多变性重心,三点确定圆,寻找凸包-Algorithm of computational geometry
Geometer
- 从c 的基础几何函数库翻译过来的 内容包括: ㈠ 点的基本运算 1. 平面上两点之间距离 2. 判断两点是否重合 3. 矢量叉乘 4. 矢量点乘 5. 判断点是否在线段上 6. 求一点饶某点旋转后的坐标 7. 求矢量夹角 ㈡ 线段及直线的基本运算 1. 点与线段的关系 2. 求点到线段所在直线垂线的垂足 3. 点到线段的最近点 4. 点到线段所在直线的距离 5. 点到折线集的最近距离 6. 判断圆是否在多边形内 7. 求矢量夹角
noise_new
- 基于噪声检测的中值滤波,先通过邻域计算检测是否为噪声,再进行开关中值滤波,对于被判断为噪声的像素不再参与其他像素的中值滤波,能够有效滤除噪声并且保留细节较好-Noise Detection Based on median filtering, first calculated by testing whether the neighborhood noise, then the switching median filter for noise pixels are judged to no l
palindrome
- 实现了输入字符串的检测,字符串以@结束。利用栈和队列的基础知识,结合数据结构,实现的回文判断!-Achieve detection of the input string, string @ end. Using the basics of stacks and queues, combined with data structure, determine the realization of the palindrome!
二叉树
- (1)输出n=11时的判断树并求成功情况下的平均查找长度ASL; (2)通过构造判断树可以求得成功情况下的平均查找长度ASL1;当宝含有n个节点的判断树看成是一颗满二叉树是,其成功情况下平均查找长度的理论值ASL2约为log2(n+1)-1,对于n=10,100,1000,10000,100000和1000000,求出ASL1,ASL2两者的差距。((1) the judgment tree of the output n=11 and the average search length un
PNPoly
- 判断点是否落于不规则区域之中,算法简洁,值得学习(Whether or not the judgment points fall within the irregular rectangle)
神经网络判断任务完成率
- 用神经网络,通过训练和验证,形成判断任务完成率的算法(By training and validating the neural network, an algorithm for judging the completion rate of tasks is formed)
决策树-判断隐形眼镜的类型
- 使用python实现的利用随机数生成算法对一个实例,判断隐形眼镜类型的分类问题进行解决。(Use python and random decision tree algorithm to solve the classification problem)
MATLAB实现多边形顶点凹凸性的识别
- 判断多边形的每个顶点的凸性MATLAB代码。(Judging the convexity of each vertex of a polygon)
判断链表是否为回文序列
- 采用C语言编写,实现输入一个链表,判断链表元素是否为回文序列。采用C语言编写,实现输入一个链表,判断链表元素是否为回文序列。
相似性判断
- 根据知网提出的hownet对文字的相似性进行判断,包含论文和代码