Hot Search : Source embeded web remote control p2p game More...
Location : Home Search - linear search
Search - linear search - List
上述算法的终止准则为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
Update : 2008-10-13 Size : 14.02kb Publisher : 洪男

上述算法的终止准则为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)
Update : 2008-10-13 Size : 9.41kb Publisher : 洪男

查找线性表中的某元素: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 * /
Update : 2008-10-13 Size : 3.55kb Publisher : 周伯通

提高输入容错。判断输入的对错。 时间关系,搜索功能为线性搜索,现增强如下: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;
Update : 2025-02-19 Size : 4kb Publisher : 王军

数据结构的实验算法 有线性表的,栈和队列,数组,树和而叉树,图,查找以及排序等算法的源代码 -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
Update : 2025-02-19 Size : 60kb Publisher : 龙亚星

DL : 0
学会用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
Update : 2025-02-19 Size : 1kb Publisher : mengxiang

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++
Update : 2025-02-19 Size : 1.62mb Publisher : Keerthana

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"
Update : 2025-02-19 Size : 12kb Publisher : Bhushan

linear search in vb it is simple to use
Update : 2025-02-19 Size : 2kb Publisher : tala

线性搜索技术 Linear search technology -Linear search technology
Update : 2025-02-19 Size : 2kb Publisher : zhoukai

DL : 0
对已经排序过的、具有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.
Update : 2025-02-19 Size : 7kb Publisher : 李心

一种常用的线性搜索技术,快速精确希望对大家有所帮助。-A common linear search technology, quickly and accurately hoping help you.
Update : 2025-02-19 Size : 2kb Publisher : 佟倩

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

线性搜索法是一种寻找最优步长的有效方法,相当好用,欢迎下载。-Linear search method is an effective method for optimal step to find, very easy to use, welcome to download.
Update : 2025-02-19 Size : 455kb Publisher : Sifang Che

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

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.
Update : 2025-02-19 Size : 9kb Publisher : waqasullahkhan

this shell program unix for linear search-this is shell program unix for linear search
Update : 2025-02-19 Size : 1kb Publisher : shailesh

3 type of linear search source in c++
Update : 2025-02-19 Size : 2kb Publisher : bita

基于matlab的最优化方法中的线性搜索方法例程-Linear Search
Update : 2025-02-19 Size : 2kb Publisher : 张华

DL : 0
不同于传统的搜索方法,在各种下降优化算法中一种通用的步长搜索方法,采用线性搜索的方式,可得到精确的最优步长。-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.
Update : 2025-02-19 Size : 2kb Publisher : Micheal
« 12 3 4 5 6 7 8 9 10 ... 16 »
CodeBus is one of the largest source code repositories on the Internet!
Contact us :
1999-2046 CodeBus All Rights Reserved.