2013年计算机联考真题——确定主元

这里写图片描述


思路:
首先把主元 确定为A[0],并计数cnt=1。之后从下标为1开始遍历数组,
1.如果A[i] == A[0],cnt++
2.如果不等,则如果cnt>0,cnt–,如果cnt<0,主元设定为A[i],cnt=1。
遍历结束后,再遍历一遍,确定主元的出现的次数,大于n/2,返回主元,否则返回-1


代码如下:

#include <iostream>
using namespace std;

int Majority(int* A, int n)
{
    int majority = A[0];
    int cnt = 1;
    for(int i = 1 ; i < n ; i++){
        if(A[i] == majority){
            cnt++;
        }else{
            if(cnt > 0){
                cnt--;
            }else{
                majority = A[i];
                cnt = 1;
            }
        } 
    }
    cnt = 0;
    for(int i = 0 ; i < n ; i++){
        if(A[i] == majority){
            cnt++;
        }
    }
    if(cnt <= n/2){
        majority = -1;
    }
    return majority;
} 

void Print(int* A,int n)
{
    for(int i = 0 ; i < n ; i++){
        cout<<A[i]<<" ";
    } 
}

int main()
{
    int A[8] = {0,5,5,3,5,7,5,5};
    int B[8] = {0,5,5,3,5,1,5,7};
    int majority = Majority(A,8);
    cout<<"数组A为:"<<endl;
    Print(A,8);
    if(majority == -1){
        cout<<"数组A没有主元"<<endl;
    }else{
        cout<<"数组A主元为:"<<majority<<endl; 
    }

    cout<<"数组B为:"<<endl;
    Print(B,8);
    majority = Majority(B,8);
    if(majority == -1){
        cout<<"数组B没有主元"<<endl;
    }else{
        cout<<"数组B主元为:"<<majority<<endl; 
    }

    return 0;
}

截图为:
这里写图片描述

  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 打赏
    打赏
  • 0
    评论

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包

打赏作者

daipuweiai

你的鼓励将是我创作的最大动力

¥1 ¥2 ¥4 ¥6 ¥10 ¥20
扫码支付:¥1
获取中
扫码支付

您的余额不足,请更换扫码支付或充值

打赏作者

实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值