来源:未知 时间:2014-09-24 14:47 作者:xbdadmin 阅读:次
[导读] 给定数组a1, a2, a3, ... an,要求编写函数f输出改数组的最大值和最小值。假设数组中的值两两不相同。...
给定数组a1, a2, a3, ... an,要求编写函数f输出改数组的最大值和最小值。假设数组中的值两两不相同。
思路:朴素的算法可以通过遍历的算法,通过2n次的比较得到数组中的最大值和最小值。实现代码如下:
public class Pair
{ // 构造函数 public Pair(int max, int min) { this._max = max; this._min = min; } // 属性 private int _max; public int Max { get { return this._max; } set { this._max = value; } } private int _min; public int Min { get { return this._min; } set { this._min = value; } } } public class SearchMinAndMax { private int[] arr = {2, 3, 1, 5, 6, 9, 7, 8}; public Pair function1() { // 初始化 int max, min; if (this.arr[0] < this.arr[1]) { max = this.arr[1]; min = this.arr[0]; } else { max = this.arr[0]; min = this.arr[1]; } // 开始循环查找 for (int i = 2; i < this.arr.Length; ++i ) { // 比min还小 if(this.arr[i] < min) { min = this.arr[i]; } // 比max还大 if(this.arr[i] > max) { max = this.arr[i]; } } // 循环结束,返回结果 return new Pair(max, min); } }
下面的过程将是不断修正上面算法的过程。考虑这个算法:将数组逻辑上分为两个两个为一组,然后比较每组中两个值的大小,如果比max还大,修改max的值,同理对min,通过这种算法的修正的话,需要的比较次数如下:1.5n。改算法实现起来主要是需要判定数组长度的奇偶性。代码如下:
public Pair function2()
{ // 这里使用的分组的方式 // 计算分组数 int n = this.arr.Length / 2; // 取整运算 // 使用第一个分组初始化max和min int max, min; if (this.arr[0] < this.arr[1]) { max = this.arr[1]; min = this.arr[0]; } else { max = 最新评论添加评论更多文章推荐
自学PHP网专注网站建设学习,PHP程序学习,平面设计学习,以及操作系统学习 京ICP备14009008号-1@版权所有www.zixuephp.com 网站声明:本站所有视频,教程都由网友上传,站长收集和分享给大家学习使用,如由牵扯版权问题请联系站长邮箱904561283@qq.com
添加评论 |