排列组合 n个数中取m个的数的组合 双色球

http://itfish.net/article/50576.html
计算出来双色球33选6个红球排列组合所有的组合,要求最小化算法时间。
1,23,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33
排列组合后总共有1107568中情况(1107568 = 33!/(33-6)!*6!)
其中算法核心为:最小组合(1,2,3,4,5,6) , 最大组合(28,29,30,31,32,33), 每一组组合规律为 (A<B<C<D<E<F) 。
1.扩展成 排列组合 n个数中取m个的数的组合结果
2.根据用户选的结果统计各个组合的选中数量


import java.util.*;

/**
 * 排列组合
 *
 * @author 咋个办呢
 */
public class PermutationsCombinations {

    /**
     * 递归算法核心
     *
     * @param pce
     * @param w
     * @param m
     */
    private static void calpce(int[] pce, int w, int m) {
        if (pce[w] + 1 > (m - pce.length + w + 1)) {
            if (w > 0) {
                calpce(pce, w - 1, m);
                pce[w] = pce[w - 1] + 1;
            } else {
                pce[w] = pce[w] + 1;
            }
        } else {
            pce[w] = pce[w] + 1;
        }
    }
/**计算从m个数选n个的组合数量  n<=m */
    private static int sumCount(int m, int n) {
        int a = 1, c = 1;
        for (int _m = m; _m > (m - n); _m--) {
            a = a * _m;
        }
        for (int _n = n; _n > 0; _n--) {
            c = c * _n;
        }
        return a / c;
    }

    public static void main(String[] args) {
        List<String> redAllType = redAllType();
        List<String> redBlue = addBlue(redAllType);

        test(redAllType);
    }

    static List<String> redAllType() {
        int all = 33;
        int take = 6;
        int[] pces = new int[all];

        for (int i = 0; i < pces.length; i++) {
            pces[i] = i + 1;
            if (i % 11 == 0) {
                System.out.println();
            }
            System.out.print(pces[i] + ",");
        }

        System.out.println();

        int sumc = sumCount(all, take);

        System.out.println("排列组合后共有" + sumc + "个组合。");

        int[] pce = new int[take];
        for (int i = 0; i < take; i++) {
            pce[i] = i + 1;

        }
        int count = 0;
        long t1 = System.currentTimeMillis();
        ArrayList<String> redAllType = new ArrayList<>(sumc);
        while (count < sumc) {
            count++;
//          System.out.println(String.format("[%d,%d,%d,%d,%d,%d]",pce[0],pce[1],pce[2],pce[3],pce[4],pce[5]));
//            System.out.println(Arrays.toString(pce));
            redAllType.add(Arrays.toString(pce));
            calpce(pce, take - 1, all);
        }
        long t2 = System.currentTimeMillis();

        System.out.println("耗时:" + (t2 - t1) + "ms,计数总数:" + (count));
        return redAllType;
    }

    static List<String> addBlue(List<String> redAllType) {
        long t1 = System.currentTimeMillis();
        ArrayList<String> all = new ArrayList<>();
        int size = redAllType.size();
        for (int i = 1; i <= 16; i++) {
            for (int j = 0; j < size; j++) {
                all.add(redAllType.get(j).replace("]", "," + i + "]"));
            }
        }
        long t2 = System.currentTimeMillis();
        System.out.println("添加篮球 耗时:" + (t2 - t1) + "ms,计数总数:" + (all.size())); //17721088
//        System.out.println(all.toString());
        return all;
    }


    static void test(List<String> all) {
        int count = 10000 * 1000;// 假设有count 个人随机选了号码
        HashMap<String, KeyCount> allMap = new HashMap<>();
        int allCount = all.size();
        for (int i = 0; i < allCount; i++) {
            allMap.put(all.get(i), new KeyCount(all.get(i)));
        }

        //模拟选中的号码
        List<String> hasType = new ArrayList<>(count);
        Random random = new Random();
        for (int i = 0; i < count; i++) {
            hasType.add(all.get(random.nextInt(allCount)));
        }
        long t1 = System.currentTimeMillis();
        //统计 各种号码的个数
        for (int i = 0; i < count; i++) {
            allMap.get(hasType.get(i)).count++;
        }

        Collection<KeyCount> values = allMap.values();
        ArrayList<KeyCount> list = new ArrayList<>(values);
        Collections.sort(list, new Comparator<KeyCount>() {
            @Override
            public int compare(KeyCount arg0, KeyCount arg1) {
                int count0 = arg0.count;
                int count1 = arg1.count;
                if (count0 > count1) {
                    return 1;
                } else if (count0 == count1) {
                    return 0;
                } else {
                    return -1;
                }
            }
        });

        long t2 = System.currentTimeMillis();
        System.out.println("统计结果 耗时:" + (t2 - t1));

        for (int i = 0; i < allCount; i++) {
                if(list.get(i).count>6){
                    break;
                }

            System.out.println(list.get(i));
        }
    }

    static class KeyCount {
        public String key;
        public int count;

        public KeyCount(String key) {
            this.key = key;
        }

        @Override
        public String toString() {
            return "KeyCount{" +
                    "key='" + key + '\'' +
                    ", count=" + count +
                    '}';
        }
    }
}


©著作权归作者所有,转载或内容合作请联系作者
  • 序言:七十年代末,一起剥皮案震惊了整个滨河市,随后出现的几起案子,更是在滨河造成了极大的恐慌,老刑警刘岩,带你破解...
    沈念sama阅读 205,386评论 6 479
  • 序言:滨河连续发生了三起死亡事件,死亡现场离奇诡异,居然都是意外死亡,警方通过查阅死者的电脑和手机,发现死者居然都...
    沈念sama阅读 87,939评论 2 381
  • 文/潘晓璐 我一进店门,熙熙楼的掌柜王于贵愁眉苦脸地迎上来,“玉大人,你说我怎么就摊上这事。” “怎么了?”我有些...
    开封第一讲书人阅读 151,851评论 0 341
  • 文/不坏的土叔 我叫张陵,是天一观的道长。 经常有香客问我,道长,这世上最难降的妖魔是什么? 我笑而不...
    开封第一讲书人阅读 54,953评论 1 278
  • 正文 为了忘掉前任,我火速办了婚礼,结果婚礼上,老公的妹妹穿的比我还像新娘。我一直安慰自己,他们只是感情好,可当我...
    茶点故事阅读 63,971评论 5 369
  • 文/花漫 我一把揭开白布。 她就那样静静地躺着,像睡着了一般。 火红的嫁衣衬着肌肤如雪。 梳的纹丝不乱的头发上,一...
    开封第一讲书人阅读 48,784评论 1 283
  • 那天,我揣着相机与录音,去河边找鬼。 笑死,一个胖子当着我的面吹牛,可吹牛的内容都是我干的。 我是一名探鬼主播,决...
    沈念sama阅读 38,126评论 3 399
  • 文/苍兰香墨 我猛地睁开眼,长吁一口气:“原来是场噩梦啊……” “哼!你这毒妇竟也来了?” 一声冷哼从身侧响起,我...
    开封第一讲书人阅读 36,765评论 0 258
  • 序言:老挝万荣一对情侣失踪,失踪者是张志新(化名)和其女友刘颖,没想到半个月后,有当地人在树林里发现了一具尸体,经...
    沈念sama阅读 43,148评论 1 300
  • 正文 独居荒郊野岭守林人离奇死亡,尸身上长有42处带血的脓包…… 初始之章·张勋 以下内容为张勋视角 年9月15日...
    茶点故事阅读 35,744评论 2 323
  • 正文 我和宋清朗相恋三年,在试婚纱的时候发现自己被绿了。 大学时的朋友给我发了我未婚夫和他白月光在一起吃饭的照片。...
    茶点故事阅读 37,858评论 1 333
  • 序言:一个原本活蹦乱跳的男人离奇死亡,死状恐怖,灵堂内的尸体忽然破棺而出,到底是诈尸还是另有隐情,我是刑警宁泽,带...
    沈念sama阅读 33,479评论 4 322
  • 正文 年R本政府宣布,位于F岛的核电站,受9级特大地震影响,放射性物质发生泄漏。R本人自食恶果不足惜,却给世界环境...
    茶点故事阅读 39,080评论 3 307
  • 文/蒙蒙 一、第九天 我趴在偏房一处隐蔽的房顶上张望。 院中可真热闹,春花似锦、人声如沸。这庄子的主人今日做“春日...
    开封第一讲书人阅读 30,053评论 0 19
  • 文/苍兰香墨 我抬头看了看天上的太阳。三九已至,却和暖如春,着一层夹袄步出监牢的瞬间,已是汗流浃背。 一阵脚步声响...
    开封第一讲书人阅读 31,278评论 1 260
  • 我被黑心中介骗来泰国打工, 没想到刚下飞机就差点儿被人妖公主榨干…… 1. 我叫王不留,地道东北人。 一个月前我还...
    沈念sama阅读 45,245评论 2 352
  • 正文 我出身青楼,却偏偏与公主长得像,于是被迫代替她去往敌国和亲。 传闻我的和亲对象是个残疾皇子,可洞房花烛夜当晚...
    茶点故事阅读 42,590评论 2 343

推荐阅读更多精彩内容

  • 首页 资讯 文章 资源 小组 相亲 登录 注册 首页 最新文章 IT 职场 前端 后端 移动端 数据库 运维 其他...
    Helen_Cat阅读 3,843评论 1 10
  • 摸了摸湿透的墙 再摸了摸你的双颊 冰冷的眼 射穿了清晨的冷 阳光是美丽的回忆 在我未及说再见的时候 你只在雨里留了...
    诗荒阅读 247评论 1 1
  • 前段时间,经常发现有人拿着锅盔路过地铁站,很是好奇,他们到底从哪里买的?好几次都想冲上去问个究竟,但理智告诉我,即...
    nlz阅读 612评论 2 11
  • 致我曾经喜欢的你: 嗨!你还记得我吗?我觉得应该是记得的吧!不,肯定是记得的,毕竟我也在你前面坐了两年啊,...
    佳之如许阅读 802评论 11 11
  • 网友自述: “我和老婆几个月前和她修成正果(爱情长跑了7年),办了酒宴,给她彩礼50万元,但是没有领证。办完酒席后...
    古风心理咨询阅读 7,703评论 15 33