데이터베이스 정규화 - 1NF, 2NF, 3NF by Yaboong on March 9, 2018 개요 데이터베이스 정규화에서 1NF, 2NF, 3NF 에 대해 알아본다. read more
데이터베이스 정규화 - 이상현상 & 함수적 종속성 by Yaboong on March 9, 2018 개요 삽입이상 (Insertion Anomaly), 갱신이상 (Update Anomaly), 삭제이상 (Deletion Anomaly) 설명 함수적 종속성 (Functional Dependency) 에 대해 알아본다. read more
Breadth-First Search by Yaboong on February 25, 2018 개요 Graph 의 탐색 방법인 Breadth-First Search (너비우선탐색) 알고리즘에 대해 알아본다 Breadth-First Search 메소드 구현 코드 보기 read more
Depth-First Search & Path by Yaboong on February 22, 2018 개요 Graph 의 탐색 방법인 Depth-First Search (깊이우선탐색) 알고리즘에 대해 알아본다 Depth-First Search 메소드 구현 DFS 응용 - 임의의 노드 v 에서 w 로 가는 path 가 있는지 알아보는 메소드 구현 코드 보기 read more
Merge Sort - 합병정렬 by Yaboong on February 14, 2018 개요 Merge Sort 의 divide, merge 부분 동작 파악 구현 - Java 시간복잡도 분석 - 점화식 풀이 코드 보기 read more
Basic Sorting Algorithms - Bubble, Selection, Insertion Sort by Yaboong on February 13, 2018 개요 기초적인 정렬 알고리즘인 거품정렬, 선택정렬, 삽입정렬에 대해 알아본다. read more