• 用next_permutation()生成r组合数,兼VC7的一个bugzz


    C++ standard library提供了两个生成排列的algorithms:next_permutation()与prev_permutation(),却没有提供生成组合数的标准函数。

        由于排列与组合之间有着密切的联系,我们很容易就可以从“排列”获得“组合”。从n个元素中任取r个元素的组合,有n! / (r! * (n-r)!)个。这些组合可用多重集{r·1, (n-r)·0}的全排列来生成,请看示例程序:

    #include <algorithm>
    #include <vector>
    #include <iostream>
    using namespace std;

    int main()
    {

        // 从n个元素中,任取r个元素的所有组合:
        //  G++[o] BCC5[o] VC7[x]

        const int n = 7;
        const int r = 4; // 0 <= r <= n
        vector<int> p, set;
        p.insert(p.end(), r, 1);
        p.insert(p.end(), n - r, 0);
       
        for ( int i = 0; i != p.size(); ++i )
            set.push_back(i+1);
       
        int count = 0;
        do {
            for ( int i = 0; i != p.size(); ++i )
                if(p[i])
                    cout << set[i] << " ";
            count++;
            cout << "\n";
        } while (prev_permutation( p.begin(), p.end() ));
       
        cout << "There are " << count << " combinations in total.";
    }

    以上程序在G++ 3.2、BCC 5.5.1、VC7下编译通过,但在VC7版运行发生死循环。怀疑这是VC7的bug, 于是再用以下程序验证之:

    #include <algorithm>
    #include <vector>
    #include <iostream>
    #include <iterator>

    using namespace std;

    int main()
    {
        // 经VC7编译执行后,会死循环,不可思议!
        // BCC5[o] G++[o] VC7[x]
        vector<int> p;
       
        p.push_back(2);
        p.push_back(2);
        p.push_back(1);

        do {
            copy(p.begin(), p.end(), ostream_iterator<int>(cout, " "));
            cout << "\n";
        } while (prev_permutation(p.begin(), p.end()));
    }

    依旧是VC7版发生死循环,看来这真的是vc7中prev_permutation()的一个bug。我向http://www.dinkumware.com/提交了一份bug report,得到的回复是:

    Our documentation points out, for both prev_permutation and
    next_permutation that no two elements may have equivalent
    ordering.

    P.J. Plauger

    经查,http://www.dinkumware.com/的文档中确实有这样的说法。而在MSDN中,我没有找到类似的提法,恐怕只能解释为MS的文档的更新太慢了。

  • 相关阅读:
    iOS开发 关于启动页和停留时间的设置
    iOS应用开发,全局强制竖屏,部分页面允许旋转的处理
    iOS利用Application Loader打包提交到App Store时遇到错误The filename 未命名.ipa in the package contains an invalid character(s). The valid characters are:A-Z ,a-z,0-9,dash,period,underscore,but the name cannot start w
    iOS之加载Gif图片
    Node以数据块的形式读取文件
    Nodejs日志管理包
    Java操作SFTP
    Nginx+Nodejs搭建图片服务器
    使用Atlas实现MySQL读写分离
    MySQL-(Master-Slave)配置
  • 原文地址:https://www.cnblogs.com/dayouluo/p/243300.html
Copyright © 2020-2023  润新知