Notice
Recent Posts
Recent Comments
Link
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 | 31 |
Tags
- mysql
- YOLO
- OpenCV
- VS Code
- SSH
- paramiko
- pandas
- 기타 연주
- pytorch
- 채보
- Linux
- label
- LIST
- windows forms
- 프로그래머스
- 핑거스타일
- error
- C
- Docker
- Visual Studio
- C++
- 오류
- JSON
- Numpy
- 컨테이너
- C#
- Python
- ubuntu
- pip
- Selenium
Archives
- Today
- Total
목록캐시 (1)
기계는 거짓말하지 않는다
[Programmers] 캐시
프로그래머스 - 캐시 문제 입니다. 일반적인 캐시와 캐시 교체 정책을 생각하면됩니다. LRU 교체 정책이므로 cache hit이면 항상 앞으로 옮겨주고 miss이면 cache가 가득 찼을 경우 맨 뒤의 요소를 제거 후 가장 앞에 현재 데이터를 넣습니다. 앞, 뒤 삽입, 삭제가 빈번하므로 list 사용 #include #include #include using namespace std; int solution(int cacheSize, vector cities) { int answer = 0, i, j; list cache; list::iterator itr; bool find = false; for(i = 0; i < cities.size(); i++) { for(j = 0; j < cities[i].l..
Programming Test
2021. 4. 30. 15:56