【算法学习】贪婪算法找零钱

因为算法比较简单,就不罗嗦了,代码如下:



//贪婪算法解决找零钱

#include <iostream>
using namespace std;
#define NUM 8
static const int permoney[] = { 10000, 5000, 2000, 1000, 500, 100, 50, 10 };

void exchange(int* result,float money);

void main(){
    float money = 0;
    while (cin>>money){
        if (money == 0.0)
            return;
        int result[NUM];
        exchange(result,money);
        for (int i = 0; i < NUM; i++){
            if (result[i] != 0){    //如果当前需要的面值张数不为0,则输出
                cout<<permoney[i]/100.0<<"->"<<result[i]<<endl;
            }
        }
    }
}

void exchange(int* result,float money){
    int mi = money * 100;
    for (int i = 0; i < NUM; i++){      //从面值为100的算起
        int n = mi/permoney[i];         //需要几张100的
        mi = mi%permoney[i];            //还剩下多少钱要找
        result[i] = n;                  //记录下需要几张100的,跳转到下一面值的钱
    }
}


评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

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

余额充值