본문 바로가기
Programing/Knowledge

[CS] Memoization

by 꾸압 2022. 11. 30.

 

<설명>

  - 이전 결과 연산(Computed)를 Caching 하여, Index의 Cache를 호출할 때마다 Result를 재사용.

    ==> Function 의 성능을 향상!

  - 전체 Code를 실행하지 않고 Data가 있으면 Data를 반환(Return)하며, 없으면 Function을 호출하여 Result 가 다시 Caching 됨.

  - 같은 Output 를 생산하는 동일한 명령문(Argument) 의 집합체에서 Memoization은 Cache 최적 방식.

 

 


 

<참조 1> https://www.codesolutionstuff.com/what-is-memoization/

<참조 2>

 

 

'Programing > Knowledge' 카테고리의 다른 글

[CS] Batch  (0) 2022.12.03
[CS] Abstraction  (0) 2022.12.02
[CS] Return Statement  (2) 2022.11.28
[CS] Routine && Subroutine  (0) 2022.11.27

댓글