搜索资源列表
Substituter.java
- 代入法的启发示搜索 我的代码实现是:按照自然语言各字母出现频率的大小从高到低(已经有人作国统计分析了)先生成一张字母出现频率统计表(A)--------(e),(t,a,o,i,n,s,h,r),(d,l),(c,u,m,w,f,g,y,p,b),(v,k,j,x,q,z) ,再对密文字母计算频率,并按频率从高到低生成一张输入密文字母的统计表(B),通过两张表的对应关系,不断用A中的字母去替换B中的字母,搜索不成功时就回退,在这里回朔是一个关键。 -generation into a
tu
- [输入] 图的顶点个数N,图中顶点之间的关系及起点A和终点B [输出] 若A到B无路径,则输出“There is no path” 否则输出A到B路径上个顶点 [存储结构] 图采用邻接矩阵的方式存储。 [算法的基本思想] 采用广度优先搜索的方法,从顶点A开始,依次访问与A邻接的顶点VA1,VA2,...,VAK, 访问遍之后,若没有访问B,则继续访问与VA1邻接的顶点VA11,VA12,...,VA1M,再访问与VA2邻接顶点...,如此下去,直至找到B,最先到达
opencv to matlab
- cvlib_mex is a collection (over two dozens) of matlab callable routines from the the OpenCV library (www.intel.com/research/mrl/research/opencv/). OpenCV is a real time computer vision library with many image processing capabilities and it is amaz
opencv to matlab
- cvlib_mex is a collection (over two dozens) of matlab callable routines from the the OpenCV library (www.intel.com/research/mrl/research/opencv/). OpenCV is a real time computer vision library with many image processing capabilities and it is amaz
bplus.zip 简单好用的B+树算法实现
- 一个简单好用的B+树算法实现, A simple easy to use B tree algorithm realizes
设A与B分别为两个带有头结点的有序循环链表
- 设A与B分别为两个带有头结点的有序循环链表(所谓有序是指链接点按数据域值大小链接,本题不妨设按数据域值从小到大排列),list1和list2分别为指向两个链表的指针。请写出将这两个链表合并为一个带头结点的有序循环链表的算法,Set up A and B respectively with the first two nodes in an orderly circulation list (so-called orderly means the link click data link thre
Bezier-and-B-spline-Techniques
- 贝塞尔曲线和B样条曲线外文原版讲义,需要看英文著作的朋友请下载-Bezier curves and B-spline curve foreign original notes, need to see a friend in English literature download
tra
- 小明准备骑单车从A地到B地旅行,A地与B地的距离是4.5公里。 A地到B地路上除了小明外还有许多的单车一族,他们也骑单车从A地前往B地,假设 他们在从A地到B地的公路上,骑车的速度总是固定的。小明有个特殊的习惯,他总是要和 别人一起骑车,这样才不会孤单。假设小明现在在A地,他会在那等待一个也是到B地旅行 的人,然后就跟上他,和他一起以同样的速度前往B地。如果暂时没有人从A到B,那么小 明会在那等待直到有人从A地到B地时,才会从A地出发,并跟着他,一起前往B地。在旅 途中
1002NA
- A polynomial of degree n has the common form as . Your task is to write a function to find a root of a given polynomial in a given interval. Format of function double Polynomial_Root(int n, double c[], double a, double b, double EPS) whe
B-spline-surface
- 这是在MATLAB-2008a环境下编写的B样条曲面生成程序,可以通过调整节点矢量和控制顶点来调整曲面形状。-This is a MATLAB-2008a environment, prepared by B-spline surface generation program, you can adjust the knot vector and control points to adjust the surface shape.
suanfa
- 设A和B是2个字符串。要用最少的字符操作将字符串A转换为字符串B。这里所说的字符操作包括: 1. 删除一个字符 2. 插入一个字符 3. 将一个字符改为另一个字符 将字符串A变换为字符串B所用的最少操作数称为A到B的编辑距离,极为d(A,B)。设计一个算法,计算任意两个字符串的编辑距离。 -Set A and B are two strings. Operation will use the least character string A is converted to a
ew
- for: Root of a Polynomial --- --- --- --- -- Time Limit: 1 Second Memory Limit: 32768 KB -------------------------------------------------------------------------------- A polynomial of degree n has the common form as . Your ta
POWandEXP
- 输入a,b两浮点数,计算以a为底,以b为指数的计算结果。-Input a, b two floating-point numbers, the calculation for the end to a to b for index calculation.
fish
- A、B、C、D、E五人合伙夜间捕鱼,凌晨时都疲惫不堪,各自在河边的树丛中找地方睡着了,日上三竿,A第一个醒来,他将鱼平分作五份,把多余的一条扔回湖中,拿自己的一份回家去了,B第二个醒来,也将鱼平分为五份,扔掉多余的一条,只拿走自己的一份,接着C、D、E依次醒来,也都按同样的办法分鱼。问五人至少合伙捕到多少条鱼?每个人醒来后看到的鱼数是多少条?-A, B, C, D, E five-member partnership night fishing, when the early morning,
B
- B样条曲线,用java实现,有良好的交互用户界面-B-spline curve, using java to achieve, and a good interactive user interface
homework_1
- 已知两个单链表 A 和 B 分别表示两个集合,其元素递增排列。请编写程序求集合 A 和 B 的交集 C = A B,要求单链表C按其元素递增排列,并利用原表(即表A和表B)的结点空间存放表C。-A list of known and two single-B, respectively, two sets of its elements in ascending order. Please write a program seeking the intersection of se
the-n-time-A--plus-B
- Descr iption: 想必大家都做过A+B这道经典的入门题了,这次的A+B问题是基于十六进制数的两个数相加。这16个数字是 0 ~ 9 ,另外用 a 表示数字 10 ,用 b 表示数字 11 ,用 c 表示数字 12 ,用 d 表示数字 13 ,用 e 表示数字 14 ,用 f 表示数字 15 。 Input: 输入包含多组数据,每组数据包含一行两个十六进制整数a和b(0<=a,b<=fffffff,都以小写给出)。处理到文件结束。 Output:
Try-to-write-A-more-B
- 设A=(a1, ……,am)和B=(b1,……,bn)均为顺序表,A’和B’分别为A和B中除去最大共同前缀后的子表 试写一个比较A,B大小的算法-Set A = (a1,......, am) and B = (b1,......, bn) are all order list, A "and" B for A and B were removed after the son of the most common prefix table Try to write A more A, B
tow-class-A-and-B
- 编写两个类:A和B,A常见的对象可以计算两个正整数的最大公约数,B常见的对象可以计算两个数的最小公倍数。要求:B类中有一个成员变量时用A类声明对象.-Write two classes: A and B, A common object can be of two positive integers GCD computation, LCM B common object can be used to calculate the number of two. Requirements: have
A-to-B-to-C reaction
- 基于MATLAB,模拟n级连串反应A->B->C反应过程中各组分浓度和体系温度的变化情况,得到各组分浓度及反应体系温度曲线。(Based on MATLAB, the concentration of each component and reaction temperature in the A->B->C reaction of N-order reaction were simulated, and thecurves of each component conc