일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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
- Collection
- Pattern
- JDBC
- 겨울카카오인턴
- tcp
- 함수형 프로그래밍
- functional programming
- javscript
- Eclipse
- Java
- lambda calculus
- exception
- Collections
- Python
- JavaScript
- design-pattern
- 로버트마틴
- Spring
- 자바
- Rails
- 프로그래머스
- 백준
- 디자인패턴
- 파이썬
- solid
- Network
- 스택
- 람다 칼큘러스
- DesignPattern
- 큐
Archives
- Today
- Total
목록Iterator (1)
개발자 노트
Iterator Pattern
참고 자료 https://refactoring.guru/design-patterns/iterator 정의 behavioral design pattern object의 behavior을 캡슐화하고 요청을 object에 위임하는 패턴 collection의 자료구조를 모른 채 element들을 순회할 수 있는 디자인 패턴 상황 - 다양한 타입의 collection 순회 다양한 타입의 collection을 순회해야 합니다. 안좋은 접근방법 - collection에 순회알고리즘 구현 문제점 복잡한 자료구조일 경우 순회가 어렵고, 여러 종류가 있을 수 있습니다. 트리의 경우를 보면 DFS 또는 BFS로도 또는 랜덤하게 순회할 수 있는데 이 모든 순회 알고리즘을 collection에서 구현한다면 지저분(blur)해질..
디자인패턴/Behavioral Design Pattern
2020. 10. 12. 09:42