搜索资源列表
逢山开路模型
- 在本问题的求解中,修桥和挖隧道是两个相类似的求解过程,我们将求解过程分为两个部分:第一、对河岸边一固定点 ,将桥修在 处时,求解由起始点 到经固定点 到居民点 的最短路线。第二、如何确定 的位置,使得总路线的费用最小。我们分别用了两个模型来进行这两部分内容的求解。模型一、针对坡度的限制,利用小区域内的局部最优来达到全局最优。模型二、列出点 有一定的位移时,可以减少的费用 的函数方程,然后利用河岸附近等高线较紧密,公路不能沿偏离等高线方向前进的特性,求出减少的费用 的条件极值,从而确定最佳修桥地点
henhaotuxiangfenge
- 首先采用灰度投影匹配进行全局运动估计和补偿,用以消除背景变化的影响;然后由二次差分抽取中间帧解决遮挡问题,通过Fisher 评价函数结合数学形态学填充得到运动对象分割掩膜,同时消除残余噪声以及平滑边缘。该方法在一定范围内较好地解决了遮挡问题,并能够高效快速地得到比较精确的视频对象。-first used for overall projection matching motion estimation and compensation, in order to remove the impact
conn
- 常用ASP函数,能帮您解决很多问题。提高系统能力。-common ASP function, can help you solve many problems. Improving the capacity of the system.
eightpuzzle
- 八数码问题,利用A*算法求解八数码问题,其中h函数为不在位将牌数-8 digital issues, the use of A* algorithm to solve 8 digital issues, including h function is the number of licenses is not in place to
TSP
- 用A星算法解决TSP问题,其中的择优函数选的是最小生成树-A star with the algorithm to solve TSP problems, the merit function is the minimum spanning tree selected
ycsf
- 标准的遗传算法,用Java实现,求解函数,有良好的界面。-Standard genetic algorithm, using Java to achieve, to solve function, there is a good interface.
GAJava
- 这是一个应用遗传算法解决的函数优化问题,通过一系列的交叉变异得到最优的函数解。- This is an application of genetic algorithms to solve the function optimization problem, through a series of cross-variance function of the optimal solution.
ShortestPath
- 用A星算法解决的TSP问题,其中的选择函数用的是最小生成树-A star with the algorithm to solve the TSP problems, the selection function using a minimum spanning tree
timu
- 这个题目主要通过调用函数和数组来解决,通过两个调用函数来解决问题-The main subject and the array by calling the function to solve, by calling the function to solve the problem of two
200812503010176
- java中返回多个值的问题,由于某些项目需要知道一个函数处理中需要返回函数的处理状态,同时 也想知道函数处理的数据,这是我们就需要使用多个返回值。 解决方式就是用HashMap来保存返回的结果.这样就可以解决多个返回值的问题 -java return multiple values, because it is a function of certain items need to know the processing required to return the funct
k-DNA
- k-长DNA子序列在DNA全序列中出现频数的计数问题。该算法通过一个哈希函数把k-长DNA子序列映射为整数关键字从而把k-长DNA子序列出现频数的计数问题转化为整数关键字的重复计数问题,使得能够利用经典B树算法来解决k-长DNA子序列的出现频数计数问题-k-long DNA sequence in the DNA sequence in the frequency of counting problems arise. In the algorithm, a hash function to k
ITool_Survey_v1.0.1
- ITool问卷调查系统是方卡在线ITool系列程序重要组成部分,由方卡在线独立原创开发。程序独创问卷调查JS调用方式,可以方便的将问卷调查融入其他系统页面或独立制作的页面,程序将不断改进更新,追求更强的功能和灵活性,最终打造一个高灵活度通用问卷调查解决方案。 默认信息 默认管理员用户名密码为admin admin 授权说明 未经方卡在线授权,不得修改或去除程序版权信息,不得应用于任何商业用途。 架设说明 直接拷贝到目录即可访问 使用方法 目
ww
- 涉设计顺序队列至少用一个内存空间解决假溢出问题,成员函数要有构造函数,入队列,出队列,非空否,并设计函数测试-Involved in the design queue order to solve at least leave with a memory overflow, member functions have a constructor, into the queue, the queue is not empty if, and design function test
Code5
- 判断一个数是否为回文数,提供了两种方法以便参考,方法一:只要利用内置函数解决该问题,方法二:主要通过数组判断-Determine if a number is palindrome, offers two ways to reference one: as long as the use of built-in functions to solve the problem, method two: mainly through the array to determine
jquery
- jQuery是Javascr ipt语言的一个新的资源库(框架) jQuery能快速,简洁的使用HTML documents, handle events, perform animations,并且能把Ajax交互应 用到网页,jQuery能够改变你书写Javascr ipt的方式. 版本主要包括jquery1.32,jquery1.42,jquery 1.44,jquery 1.5版本。 Query1.5下载,包括:jquery-1.5.js, jquery-1.5
Genetic-algorithm
- 利用JAVA语言实现遗传算法,里面包含利用遗传算法解决函数求最优解的简单例子。-The use of JAVA language implementation of genetic algorithm, which includes the use of genetic algorithms to solve function for the optimal solution of a simple example.
Insert-the-operator
- 插入运算符使等式成立课程设计实验报告 设计程序在表达式“123456789=a”中左边的适当位置插入运算符“+”“-”或“*”,以使等式成立,列出所有可能情况。例如:当a=1000时,123+45-67+8-9=100。 在小学就遇到过这样的问题,只是那时遇到的这样的问题使很简单的,没有乘,并且现在的程序要求的使把所有符合条件的答案都选出来。所以可以考虑使用编写的程序来解决问题。 首先问题的左边是“123456789”中插入适当的运算符,可以想象成有123456789这
solve
- 蓝桥试题 循环小数表示 单函数解决问题 简洁-Blue Bridge questions Recurring decimals said
taobao-asp-sdk-demo
- 此SDK主要以淘宝OAuth2.0用户授权介绍、SDK使用配置、SDK使用过程疑难解决几个方面讲解这个SDK: 一、淘宝OAuth2.0用户授权介绍 1、Request至用户授权页面:https://oauth.taobao.com/authorize,回调得到Code; 2、得到Code后,把Code及其它必要参数,需POST至第三方页面:https://oauth.taobao.com/token,获取得到淘宝平台返回的access_token; 3、
smtp类ereg函数替换版
- 解决PHP邮件发送中,使用smtp类在php5.3版本以上环境中ereg函数不适用的问题(Solve PHP mail sending, use SMTP class in php5.3 version of the above environment ereg function is not applicable to the problem)