E D R , A S I H C RSS

Full text search for "Factorial"

Factorial


Search BackLinks only
Display context of search results
Case-sensitive searching
  • FactorialFactors . . . . 5 matches
         === About [FactorialFactors] ===
         || 문보창 || C++ || ? || [FactorialFactors/문보창] ||
         || 이동현 || Java || 2시간 || [FactorialFactors/이동현] ||
         || 조현태 || C/C++ || . || [FactorialFactors/조현태] ||
         || [1002] || Python || 1차 : 1시간 20분, 2차 : 시도중 || [FactorialFactors/1002] ||
  • CompleteTreeLabeling/하기웅 . . . . 2 matches
         BigInteger factorial[3300];
         void InitFactorial()
          factorial[1] = 1;
          factorial[i] = factorial[i-1] * i;
          return factorial[a]/(factorial[b]*factorial[a-b]);
          labelingNum = labelingNum * factorial[l] * combination(nodeNum, select);
          InitFactorial();
  • Factorial . . . . 2 matches
         == Factorial을 구하는 프로그램을 작성한다. ==
         || 영동 ||. ||["Factorial/영동"]||
  • Factorial2 . . . . 2 matches
         Factorial of Number A 란 A! 식으로 표현하며, A 의 계승이라는 표현을 씁니다.
         임의의 수 A 에 대한 Factorial 을 구하는 프로그램을 작성하시오. (A 는 20이상이 될 수 있습니다.)
  • FactorialFactors/문보창 . . . . 2 matches
         // 884 - Factorial Factors
         [FactorialFactors] [AOI]
  • FactorialFactors/이동현 . . . . 2 matches
         public class FactorialFactors2 {
          new FactorialFactors2().run();
  • UnitTest . . . . 2 matches
         void testFactorial ()
          actual = factorial (3);
         void testFactorial ()
          actual = factorial (3);
  • Yggdrasil/020515세미나 . . . . 2 matches
         == Factorial ==
         ["Factorial/영동"]
  • 데블스캠프2002 . . . . 2 matches
          1. ["Factorial"] - 재귀호출 을 알려주마. --zennith
          1. ["Factorial2"] - 기본자료형의 한계를 벗어나보자. --zennith
  • AOI . . . . 1 match
          || [FactorialFactors] || X || O ||
  • C++Seminar03/SimpleCurriculum . . . . 1 match
          * Recursion 과 Iteration 에 대한 학습과 이해. (DeleteMe '학습'을 먼저하는게 좋을것 같아요. 학습할 주제로는.. Factorial 이 좋을것 같습니다. - 임인택)
  • CarmichaelNumbers/조현태 . . . . 1 match
          일단 소수이면 안되기 때문에 살포시 저번에 [FactorialFactors] 에서 사용했던 알고리즘을 사용해서 단시간에 소수인지 확인하도록 하였다.
  • Factorial/영동 . . . . 1 match
         ["Factorial"]
  • FactorialFactors/1002 . . . . 1 match
         일단 Factorial 이라는 점에서 해당 계산에 대해 다음과 같은 식을 만들어냄.
         def factorialFactor(n):
          for i in [2,5,8,1996,123456,1000000]: print factorialFactor(i)
  • FactorialFactors/조현태 . . . . 1 match
         unsigned int factorial_factors(unsigned int);
          cout << factorial_factors(input_number) << "\n";
         unsigned int factorial_factors(unsigned int answer)
         [AOI] [FactorialFactors]
  • HowManyZerosAndDigits/임인택 . . . . 1 match
          public void testFactorial() {
          assertEquals(1, object.factorial(1));
          assertEquals(2, object.factorial(2));
          assertEquals(6, object.factorial(3));
          assertEquals(24, object.factorial(4));
          _fact = factorial(_n);
          public int factorial(int n) {
  • LispLanguage . . . . 1 match
         === Factorial ===
  • SchemeLanguage . . . . 1 match
         === Factorial ===
         (define (factorial x)
          (* x (factorial (- x 1)))))
  • 새싹교실/2011/Noname . . . . 1 match
          * Factorial 함수만들기
         int factorial(int n);
          printf("%d",factorial(a));
         int factorial(int n){
          return n*factorial(n-1);
  • 새싹교실/2011/무전취식/레벨6 . . . . 1 match
          * Factorial 짤때 중요한건 Stack Call!! 함수 호출시. 스택에 돌아올 주소를 넣어두고 함수가 종료되면 스택에서 빼와서 돌아간다. 너무 많은 자기 자신을 호출하는 함수라면 스택에 너무 많이 쌓여 오버 플로우(Over Flow)로 에러가 나게 된다. 항상!! 종료조건을 정하고 함수를 설계하자.
          * 이걸 너무 늦게 올리게 되는군. 내가 Array를 이때 가르쳤었구나 이렇게. factorial은 중요하긴 한데 더 중요한건 Stack Call이라는 설계입니다. 잘 기억하시고요. 이때 케잌을 먹었는데 기억하면 신나는군요 자 다음 레벨 7로 갑니다. - [김준석]
  • 새싹교실/2012/열반/120409 . . . . 1 match
         == Factorial ==
  • 튜터링/2011/어셈블리언어 . . . . 1 match
          * 강의 과제인 Factorial을 코딩해본다.
Found 22 matching pages out of 7540 total pages (5000 pages are searched)

You can also click here to search title.

Valid XHTML 1.0! Valid CSS! powered by MoniWiki
last modified 2021-02-07 05:23:15
Processing time 0.2802 sec