일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | 3 | 4 | 5 | ||
6 | 7 | 8 | 9 | 10 | 11 | 12 |
13 | 14 | 15 | 16 | 17 | 18 | 19 |
20 | 21 | 22 | 23 | 24 | 25 | 26 |
27 | 28 | 29 | 30 |
Tags
- 30. Substring with Concatenation of All Words
- DWG
- 밴픽
- data science
- LeetCode
- 109. Convert Sorted List to Binary Search Tree
- Convert Sorted List to Binary Search Tree
- Regular Expression
- 컴퓨터의 구조
- Protocol
- 파이썬
- attribute
- 43. Multiply Strings
- 315. Count of Smaller Numbers After Self
- shiba
- Substring with Concatenation of All Words
- 715. Range Module
- Generator
- kaggle
- Python Implementation
- t1
- iterator
- Decorator
- 시바견
- concurrency
- Python Code
- Python
- 프로그래머스
- 운영체제
- Class
Archives
- Today
- Total
목록LRU Cache (1)
Scribbling
LeetCode: 146. LRU Cache
LRU(Least Recently Used) 알고리즘은 캐시나 메인 메모리에서 '메모리 관리 알고리즘'으로 많이 사용된다. LRU 알고리즘에 대한 자세한 설명은 아래 링크를 참고하라. https://focalpoint.tistory.com/137 쉽게 배우는 운영체제 내용 정리 - Chapter 09 가상 메모리 관리 1. 요구 페이징 1.1 요구 페이징 프로세스가 필요로 하는 데이터를 언제 메모리로 가져올지 결정하는 것이 가져오기 정책이다. 일반적으로 프로세스가 요청할 때 메모리로 가져오는데, 일르 요구 focalpoint.tistory.com 간단히 말하자면, 메모리가 가득차면 가장 사용한지 오래 지난 부분을 버리는 것이다. 여기서 '사용'은 해당 부분에 접근하거나, 수정한 경우를 의미한다. 파이썬은..
Computer Science/Coding Test
2021. 11. 11. 21:43