Welcome![Sign In][Sign Up]
Location:
Search - linear search

Search list

[CSharp搜索区间(导数法)

Description: 上述算法的终止准则为H终止准则。 编写通用程序。: 直线搜索所计算的函数自己任选。①计算一个正定二次函数(至少是4元函数);②至少计算一个非二次函数(至少是5元函数)。 非线性最小二乘问题的修正Gauss-Newton法所计算的函数:至少计算一个非线性函数(至少是5元函数)。 乘子法所计算的问题:等式约束、不等式约束要求至少各有一个。问题可在教材或其它参考书中任意选取。 程序自行编写(禁止采用调用现成软件的方式),编程语言自选。从独立完成所有实验内容的学生中遴选出-above algorithm criteria for the termination of H termination criteria. Preparation of common procedures. : Linear search function by calculating their options. calculate a definite quadratic function (at least four yuan function); calculated at least one non-quadratic function (at least five yuan functions). The nonlinear least squares problems that Gauss-Newton method by calculating function : at least a nonlinear function computing (at least five yuan functions). Multiplier Method calculation problem : identity bound inequality constraints have required at least one. Problems in reference books or other materials were selected at random. Self-preparation procedure (called ban on the use of existing software), on-demand programming language. From an experimental content complete all of
Platform: | Size: 14358 | Author: 洪男 | Hits:

[CSharp抛物线法

Description: 上述算法的终止准则为H终止准则。要求编写通用程序。 关于函数的要求: 直线搜索所计算的函数自己任选。 共轭梯度法所计算的函数:①计算一个正定二次函数(至少是4元函数);②至少计算一个非二次函数(至少是5元函数)。 非线性最小二乘问题的修正Gauss-Newton法所计算的函数:至少计算一个非线性函数(至少是5元函数)。 乘子法所计算的问题:等式约束、不等式约束要求至少各有一个。问题可在教材或其它参考书中任意选取。 程序自行编写(禁止采用调用现成软件的方式),编程语言自选。 -above algorithm criteria for the termination of H termination criteria. Requests for common procedures. The demands on function : linear search function by calculating their options. The conjugate gradient method by calculating function : calculate a definite quadratic function (at least four yuan function); calculated at least one non-quadratic function (at least five yuan functions). The nonlinear least squares problems that Gauss-Newton method by calculating function : at least a nonlinear function computing (at least five yuan functions). Multiplier Method calculation problem : identity bound inequality constraints have required at least one. Problems in reference books or other materials were selected at random. Self-preparation procedure (called ban on the use of existing software)
Platform: | Size: 9632 | Author: 洪男 | Hits:

[Other resourcechazhaoyuansu

Description: 查找线性表中的某元素:L为带头接点的单链表的头指针,当第i个元素存在的时候,其值赋给e并返回OK,否则返回ERROR */ -linear search of a table of elements : L tap for the lead single linked list for the first guide, When the first i elements exist, the value assigned to the e and return to the lounges, or else return ERROR * /
Platform: | Size: 3632 | Author: 周伯通 | Hits:

[source in ebook电话本管理系统

Description: 提高输入容错。判断输入的对错。 时间关系,搜索功能为线性搜索,现增强如下:f_search:费氏查找法;btree:二叉树查找法;l_search:线性查找法; r_search:递归折半查找法;zcsear:杂凑碰撞查找法;o_sear:插补查找加强法; 排序是冒泡法,现增强为:heaps:累堆排序;binary:二叉树排序;xieer:谢耳排序;sinsert:插入排序;quicks:快速排序;select:选择排序法;-increase input fault tolerance. Imported wrong judgment. The time, a search function for the linear search is enhanced as follows : f_search : Fernandez search method; BTREE : binary tree search method; L_search : linear search method; R_search : recursive binary search method; Zcsear : hash collision search method; " Files : interpolation search Enhancement Act; Sorting is bubbling, as it is now : heaps : tired heap sort; binary : Binary Tree sorting; xieer : Xie ears scheduling; sinsert : Insert scheduling; quicks : rapid sequencing; select : Select Sort;
Platform: | Size: 4096 | Author: 王军 | Hits:

[Data structs数椐结构实验指导书

Description: 数据结构的实验算法 有线性表的,栈和队列,数组,树和而叉树,图,查找以及排序等算法的源代码 -experimental data structure is linear algorithm to the table, stack and queue, arrays, trees and the trees and fork, graphics, such as search and sorting algorithm source code
Platform: | Size: 61440 | Author: 龙亚星 | Hits:

[matlabmatlab44

Description: 学会用MATLAB编写程序; 学会一维搜索法; 精确的一维线性搜索法:0.618法; 非精确的一维线性搜索法:goldstein法;-Learn how to use MATLAB programming Society of one-dimensional search method precise linear one-dimensional search method: 0.618 law non-accurate one-dimensional linear search method: goldstein law
Platform: | Size: 1024 | Author: mengxiang | Hits:

[Otherlinear_search

Description: It is a basic program to search for options given in a list box used in VC++ MFC without using wizard... It is simple program...helps in understanding VC-It is a basic program to search for options given in a list box used in VC++ MFC without using wizard... It is simple program...helps in understanding VC++
Platform: | Size: 1698816 | Author: Keerthana | Hits:

[Data structsTemplate-Binary-Search

Description: The "binary search algorithm" is one of the quickest way for searching threw an array, the "linear search algorithm" makes "n" comparaisons for searching for an element inside a given array. The "binary search algorithm" only makes log2(n) comparaisons for searching that same element,so the "binary search algorithm" is definitly much more quicker than the usual "linear search algorithm" but in order to search threw an array,you need to sort the elements first one of the algorithm available for sorting arrays is the "bubble sort algorithm"
Platform: | Size: 12288 | Author: Bhushan | Hits:

[Algorithmlinear-search

Description: linear search in vb it is simple to use
Platform: | Size: 2048 | Author: tala | Hits:

[Mathimatics-Numerical algorithmsLinear-search-technology

Description: 线性搜索技术 Linear search technology -Linear search technology
Platform: | Size: 2048 | Author: zhoukai | Hits:

[Othersearch

Description: 对已经排序过的、具有n个元素的数组A,检索是否存在元素x。当n是奇数时,用二叉检索算法检索;当n是偶数时,用线性检索算法检索。写出算法分析和时间复杂度。-Already sorted array of n elements A, retrieves whether there exists an element x. When n is odd, using the binary search algorithm to retrieve when n is even, the linear search algorithm to retrieve. Write the algorithm and time complexity.
Platform: | Size: 7168 | Author: 李心 | Hits:

[Otherlinear-search

Description: 一种常用的线性搜索技术,快速精确希望对大家有所帮助。-A common linear search technology, quickly and accurately hoping help you.
Platform: | Size: 2048 | Author: 佟倩 | Hits:

[OtherLinear-search-technology

Description: 最优化算法中的线性搜索技术,对于线性规划问题中求取最大最小值非常有用-Linear optimization algorithm search technology, for the linear programming problem is very useful to strike a maximum and minimum
Platform: | Size: 2048 | Author: haohaiqiang | Hits:

[File Formatline-search

Description: 线性搜索法是一种寻找最优步长的有效方法,相当好用,欢迎下载。-Linear search method is an effective method for optimal step to find, very easy to use, welcome to download.
Platform: | Size: 465920 | Author: Sifang Che | Hits:

[matlablinear-search

Description: 用Fibonacci法和抛物线法解决以为搜索问题 对应《最优化方法》(解可新等著)第一章作业题-Solving parabolic method using Fibonacci method and corresponding search problem that " optimization method" (waiting for the solution to new) Chapter job title
Platform: | Size: 3072 | Author: 郭婧怡 | Hits:

[Data structsLINEAR-SEARCH

Description: It is a source code of Linear Search in C++. Liner Search is a data structure.-It is a source code of Linear Search in C++. Liner Search is a data structure.
Platform: | Size: 9216 | Author: waqasullahkhan | Hits:

[Linux-Unixlinear-search(wrk)

Description: this shell program unix for linear search-this is shell program unix for linear search
Platform: | Size: 1024 | Author: shailesh | Hits:

[Windows Developlinear-search

Description: 3 type of linear search source in c++
Platform: | Size: 2048 | Author: bita | Hits:

[matlabLinear-Search

Description: 基于matlab的最优化方法中的线性搜索方法例程-Linear Search
Platform: | Size: 2048 | Author: 张华 | Hits:

[matlabsearch

Description: 不同于传统的搜索方法,在各种下降优化算法中一种通用的步长搜索方法,采用线性搜索的方式,可得到精确的最优步长。-Different the traditional search methods, a general step size search method is used in various drop optimization algorithms, and the optimal step size can be obtained by linear search.
Platform: | Size: 2048 | Author: Micheal | Hits:
« 12 3 4 5 6 7 8 9 10 ... 16 »

CodeBus www.codebus.net