计算c中的所有模式

发布于 2024-08-22 02:34:59 字数 138 浏览 8 评论 0原文

你能给我一些关于如何计算c中是否有两种或多种模式的提示吗?

我能够创建一个计算模式的程序,但如果我有一个具有多种模式的数据集,例如 5,3,1,2,3,4,6,4 我的程序找到 3 作为众数,而不是同时找到 3 和 4。

Can you give me some hint on how to calculate if there are two or more modes in c?

I was able to create a program that will calculate for the mode, but if i have a dataset with multiple modes, like 5,3,1,2,3,4,6,4 my program only finds 3 as a mode, rather than both 3 and 4.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

一世旳自豪 2024-08-29 02:34:59

一种方法可能是这样的:

  1. 确定每个值出现的次数,保留一个列表
  2. 确定任何值出现的最大次数(通过查看列表)
  3. 查找出现次数最多的所有值(通过查看您的 列表)列表)

An approach might go something like this:

  1. Determine how many times each value appears, keep a list
  2. Determine the maximum number of times any value appears (by looking at your list)
  3. Find all values that appear the maximum number of times (by looking at your list)
以为你会在 2024-08-29 02:34:59

刚刚意识到你被限制在 C.. 猜猜这个答案不起作用。

这应该可以达到你想要的效果(我想..我还没有尝试过)。

std::vector<int> calculateModes(std::vector<int> input)
{
    std::sort(input.begin(), input.end());
    std::vector<int> modes;
    int lastModeCount = 0;
    std::vector<int>::const_iterator cursor = input.begin();
    while(cursor < input.end())
    {
        std::vector<int>::const_iterator endOfRun
            = std::find_if(cursor, input.end(),
            std::not1(std::bind2nd(std::equal_to<int>(), *cursor)));
        int modeCount = std::distance(cursor, endOfRun);
        if (modeCount > lastModeCount)
        {
            modes.clear();
            modes.push_back(*cursor);
        }
        else if (modeCount == lastModeCount)
            modes.push_back(*cursor);
        cursor = endOfRun + 1;
    }
    return modes;
}

Just realized that you're restricted to C.. guess this answer doesn't work then.

This should do what you want (I think.. I've not tried it).

std::vector<int> calculateModes(std::vector<int> input)
{
    std::sort(input.begin(), input.end());
    std::vector<int> modes;
    int lastModeCount = 0;
    std::vector<int>::const_iterator cursor = input.begin();
    while(cursor < input.end())
    {
        std::vector<int>::const_iterator endOfRun
            = std::find_if(cursor, input.end(),
            std::not1(std::bind2nd(std::equal_to<int>(), *cursor)));
        int modeCount = std::distance(cursor, endOfRun);
        if (modeCount > lastModeCount)
        {
            modes.clear();
            modes.push_back(*cursor);
        }
        else if (modeCount == lastModeCount)
            modes.push_back(*cursor);
        cursor = endOfRun + 1;
    }
    return modes;
}
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文