피보나치 수열의 두 가지 실현 방식
1. 귀속 방식
//n n
public static int fibonacci(int n){
if( n < 0){
return -1;
}else if( n == 0){
return 0;
}if( n ==1){
return 1;
}else {
return fibonacci(n-1)+fibonacci(n-2);
}
}
2. 순환 방식
//n n
public static int fibonacci2(int n){
int n0 = 0;
int n1 = 1;
int result = 0;
if( n < 0){
return -1;
}else if( n == 0){
return 0;
}if(n == 1){
return 1;
}else{
for (int i=2;i<=n;i++){
result = n0+n1;
n0 = n1;
n1 = result;
}
return result;
}
}
3. 실행 결과:
테스트 코드:
public static void main(String[] args) {
// TODO Auto-generated method stub
for(int i= 1;i<10;i++){
System.out.print(fibonacci(i)+" ");
}
System.out.println("//////////");
for(int i= 1;i<10;i++){
System.out.print(fibonacci2(i)+" ");
}
}
운행 결과는 다음과 같다.1 1 2 3 5 8 13 21 34
////////// 1 1 2 3 5 8 13 21 34
이 내용에 흥미가 있습니까?
현재 기사가 여러분의 문제를 해결하지 못하는 경우 AI 엔진은 머신러닝 분석(스마트 모델이 방금 만들어져 부정확한 경우가 있을 수 있음)을 통해 가장 유사한 기사를 추천합니다:
Access Request, Session and Application in Struts2If we want to use request, Session and application in JSP, what should we do? We can obtain Map type objects such as Req...
텍스트를 자유롭게 공유하거나 복사할 수 있습니다.하지만 이 문서의 URL은 참조 URL로 남겨 두십시오.
CC BY-SA 2.5, CC BY-SA 3.0 및 CC BY-SA 4.0에 따라 라이센스가 부여됩니다.