Combinations using memoization in java

好久不见. 提交于 2019-12-11 10:15:24

问题


I'm making a program that calculates a combination given two numbers, ex:

java Combination 5 3 

would give an answer of 10.

I have a method that looks like this:

public static int choose(int n, int k) {   // chooses k elements out of n total
  if (n == 0 && k > 0)
      return 0;
  else if (k == 0 && n >= 0)
      return 1;
  else return choose(n - 1, k - 1) + choose(n - 1, k);

How would I be able to use memoization for this in order to make it calculate faster with larger numbers?


回答1:


You might be better off using a more efficient formula: http://en.wikipedia.org/wiki/Binomial_coefficient#Multiplicative_formula

If you want to use this formula, then this is a way to memoize (sans the typos I might have):

private static Map<Pair<Integer, Integer>, Long> cache = new HashMap<>(); // you'll need to implement pair

public static int choose(int n, int k) {
... // the base cases are the same as above.
} else if (cache.contains(new Pair<>(n, k)) {
    return cache.get(new Pair<>(n, k));
} else {
    Long a = cache.get(new Pair<>(n - 1, k - 1));
    if (a == null) { a = choose(n - 1, k - 1); }
    Long b = cache.get(new Pair<>(n - 1, k));
    if (b == null) { b = choose(n - 1, k); }

    cache.put(new Pair<>(n, k), a + b);
    return a + b;
}


来源:https://stackoverflow.com/questions/12774025/combinations-using-memoization-in-java

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!