- 1、本文档共30页,可阅读全部内容。
- 2、原创力文档(book118)网站文档一经付费(服务费),不意味着购买了该文档的版权,仅供个人/单位学习、研究之用,不得用于商业用途,未经授权,严禁复制、发行、汇编、翻译或者网络传播等,侵权必究。
- 3、本站所有内容均由合作方或网友上传,本站不对文档的完整性、权威性及其观点立场正确性做任何保证或承诺!文档内容仅供研究参考,付费前请自行鉴别。如您付费,意味着您自己接受本站规则且自行承担风险,本站不退款、不进行额外附加服务;查看《如何避免下载的几个坑》。如果您已付费下载过本站文档,您可以点击 这里二次下载。
- 4、如文档侵犯商业秘密、侵犯著作权、侵犯人身权等,请点击“版权申诉”(推荐),也可以打举报电话:400-050-0827(电话支持时间:9:00-18:30)。
查看更多
算法-排序递归(Algorithm - sort recursion)
1. Linear search
Start with the first element of the array and compare it to the lookup value, and if the equality stops, then go ahead and find the match value until you find the match.
Note: the elements in the array that are being searched are unordered and random.
For example, linear-lookup code for an integer array:
Static Boolean linear search (int target, int [] array)
{
/ / traverse the entire array and compare each traversal element to the lookup value
For (int I = 0; I array.length; I + +)
{
If (array [I] = = target)
{
Return true;
}
}
Return false;
}
Three conditions of the algorithm are analyzed:
A. Best case
The value to find is in the first position of the array. In other words, you can achieve the purpose only once, so the big O expression of the best case is: O (1).
B. Worst case scenario
If the value to be found is at the end of the array or not, then an array of size n must be compared n times. The big O expression is: O (n).
C. Average situation
Estimates will perform: (n + (n - 1) + (n - 2) +.... + 1)/n = (n + 1) / 2 times, complexity of O (n)
2. Binary search
Hypothesis was to find the elements in the array is ascending, then we find value, the first directly to the intermediate position of the array (array length / 2), and the median and find value comparison, if equal return, otherwise, if the current element value is less than finding, half continues in the back of the array to find (repeat the above process); If the current element value is greater than the lookup value, you will continue to search the first half of the array until you find the target value or stop when the binary array is not available.
Note: binary search is just an array or collection of ordered arrays
Code:
Static Boolean binarySearch (int target, int [] array)
{
Int front = 0;
Int tail = array.length - 1;
/ / whether the subarray can be divided again
While (front = tail)
{
/ / get the middle position of the subarray, and then make a
您可能关注的文档
- 西交《桥梁工程》在线作业(West to bridge project online homework).doc
- 西交《土木工程材料》在线作业(West to the civil engineering materials online homework).doc
- 西交《发电厂电气部分(高起专)》在线作业(West to power plant electrical parts (higher) online operation).doc
- 西交《现代企业管理》在线作业(West to modern enterprise management online homework).doc
- 西交《药物分析》在线作业(Western medicine analysis online homework).doc
- 西交《自动控制理论(高起专)》在线作业(Online operation of automatic control theory (Higher Vocational Education)).doc
- 西联汇款(Western Union)的资料(Western Union remittance (Western Union) information).doc
- 西交《资产评估》在线作业(West to asset assessment online homework).doc
- 西马诺级别(Ximanuo level).doc
- 西门子6RA70的主从传动(SIEMENS 6RA70 master slave drive).doc
文档评论(0)