간단한(?)알고리즘의 복잡성에 관한 임무
function fib(n) {
if (n <= 1) {
return 1
}
return fib(n - 2) + fib(n - 1)
}
첫 번째 질문은 간단합니다.Q1. What's wrong with this implementation and how to fix it?
너무 쉬운 거 알아요.😆 이것이 바로 왜 여기에 너에게 또 다른 것이 있느냐는 것이다.
Q2. What's it complexity in terms of ? How to estimate and prove it?
답은 곧 발표될 것이다⏳
두뇌 폭풍 즐거움!
Reference
이 문제에 관하여(간단한(?)알고리즘의 복잡성에 관한 임무), 우리는 이곳에서 더 많은 자료를 발견하고 링크를 클릭하여 보았다 https://dev.to/alekseiberezkin/a-simple-task-on-algorithm-complexity-3lji텍스트를 자유롭게 공유하거나 복사할 수 있습니다.하지만 이 문서의 URL은 참조 URL로 남겨 두십시오.
우수한 개발자 콘텐츠 발견에 전념 (Collection and Share based on the CC Protocol.)