算法-排序递归(Algorithm - sort recursion).doc

  1. 1、本文档共30页,可阅读全部内容。
  2. 2、原创力文档(book118)网站文档一经付费(服务费),不意味着购买了该文档的版权,仅供个人/单位学习、研究之用,不得用于商业用途,未经授权,严禁复制、发行、汇编、翻译或者网络传播等,侵权必究。
  3. 3、本站所有内容均由合作方或网友上传,本站不对文档的完整性、权威性及其观点立场正确性做任何保证或承诺!文档内容仅供研究参考,付费前请自行鉴别。如您付费,意味着您自己接受本站规则且自行承担风险,本站不退款、不进行额外附加服务;查看《如何避免下载的几个坑》。如果您已付费下载过本站文档,您可以点击 这里二次下载
  4. 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

您可能关注的文档

文档评论(0)

jgx3536 + 关注
实名认证
内容提供者

该用户很懒,什么也没介绍

版权声明书
用户编号:6111134150000003

1亿VIP精品文档

相关文档