パッケージ library

クラス ModuloCalculation.CombinationCalculator

    • コンストラクタの概要

      コンストラクタ 
      コンストラクタ 説明
      CombinationCalculator​(int size, int mod)  
    • メソッドの概要

      すべてのメソッド インスタンス・メソッド concreteメソッド 
      修飾子とタイプ メソッド 説明
      (package private) long calc​(int n, int k)
      mod 込みで nCk を計算した結果を返す.
      private void init()  
      • クラスから継承されたメソッド java.lang.Object

        clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
    • フィールドの詳細

      • size

        private final int size
      • mod

        private final int mod
      • factorials

        private final long[] factorials
      • invertedElements

        private final long[] invertedElements
      • invertedFactorials

        private final long[] invertedFactorials
    • コンストラクタの詳細

      • CombinationCalculator

        CombinationCalculator​(int size,
                              int mod)
    • メソッドの詳細

      • init

        private void init()
      • calc

        long calc​(int n,
                  int k)
        mod 込みで nCk を計算した結果を返す.
        パラメータ:
        n - 組み合わせの対象となる数
        k - 組み合わせる個数
        戻り値:
        組み合わせの結果