gpt4 book ai didi

c++ - 硬币找零的贪心算法c++

转载 作者:塔克拉玛干 更新时间:2023-11-03 06:18:37 25 4
gpt4 key购买 nike

所以,我正在创建一个硬币找零算法,它采用值 N 和任意数量的面额,如果它没有 1,我必须自动包含 1。我已经这样做了,但是现在有一个缺陷,我有 2 个矩阵,我需要使用其中的 1 个。是否可以重写 S[i] 矩阵并仍然增加数组的大小...。另外,我如何找到最大面额和第二高面额,然后一直到最小面额?我应该按照从高到低的顺序进行排序以使其更容易,还是有一种更简单的方法可以一个接一个地查找它们?

int main()
{
int N,coin;
bool hasOne;
cout << "Enter the value N to produce: " << endl;
cin >> N;
cout << "Enter number of different coins: " << endl;
cin >> coin;

int *S = new int[coin];

cout << "Enter the denominations to use with a space after it" << endl;
cout << "(1 will be added if necessary): " << endl;
for(int i = 0; i < coin; i++)
{
cin >> S[i];
if(S[i] == 1)
{
hasOne = true;
}
cout << S[i] << " ";
}
cout << endl;
if(!hasOne)
{
int *newS = new int[coin];
for(int i = 0; i < coin; i++)
{
newS[i] = S[i];
newS[coin-1] = 1;
cout << newS[i] << " ";
}
cout << endl;
cout << "1 has been included" << endl;
}

//system("PAUSE");
return 0;
}

最佳答案

你可以用 std::vector 实现它,然后你只需要使用 push_back

std::sort 可用于将面额按降序排序,然后只需检查最后一个是否为 1 并在是时添加它丢失的。 (此代码中缺少很多错误检查,例如,您可能应该检查面额是否 >= 0,因为您使用的是有符号整数)。

#include <iostream>   // for std::cout/std::cin
#include <vector> // for std::vector
#include <algorithm> // for std::sort

int main()
{
std::cout << "Enter the value N to produce:\n";
int N;
std::cin >> N;

std::cout << "Enter the number of different denominations:\n";
size_t denomCount;
std::cin >> denomCount;

std::vector<int> denominations(denomCount);
for (size_t i = 0; i < denomCount; ++i) {
std::cout << "Enter denomination #" << (i + 1) << ":\n";
std::cin >> denominations[i];
}

// sort into descending order.
std::sort(denominations.begin(), denominations.end(),
[](int lhs, int rhs) { return lhs > rhs; });

// if the lowest denom isn't 1... add 1.
if (denominations.back() != 1)
denominations.push_back(1);

for (int coin: denominations) {
int numCoins = N / coin;
N %= coin;
if (numCoins > 0)
std::cout << numCoins << " x " << coin << '\n';
}

return 0;
}

现场演示:http://ideone.com/h2SIHs

关于c++ - 硬币找零的贪心算法c++,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/37082986/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com