码迷,mamicode.com
首页 > 编程语言 > 详细

二分递归求最大次大的方法(数组的下标的表示方法居然可以方括号内部加减)

时间:2017-09-14 12:03:26      阅读:175      评论:0      收藏:0      [点我收藏+]

标签:namespace   include   using   bsp   nbsp   ace   turn   ++   class   

#include<iostream>
using namespace std;

void max_num(int a[], int lo, int hi, int & x1, int & x2)
{
    if (a[x1 = lo]  < a[x2 = lo + 1])
        swap(x1, x2);
    for (int i = lo + 2; i <= hi; i++)
    {
        if (a[x2] < a[i])
        {
            if (a[x1] < a[x2 = i])
                swap(x1, x2);
        }
    }
    cout << x1 << "  " << x2;
}
int main()
{
    int A[10] = { 2,4,7,3,54,2,6,9,5,10 };
    int x1, x2;
    max_num(A, 0, 9, x1, x2);
    system("pause");
    return 0;
}

以往的方法是一遍循环,然后找到最大,然后在二遍循环找到次大。

但是这种方法提供了一种新的思路,首先定义好最大和次大,一边循环比较就可以了  厉害

二分递归求最大次大的方法(数组的下标的表示方法居然可以方括号内部加减)

标签:namespace   include   using   bsp   nbsp   ace   turn   ++   class   

原文地址:http://www.cnblogs.com/xiaochige/p/7519700.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!