[What is Algorithm] What is Breadth First Search
in Algorithm on Understanding, Algorithm
너비 우선 탐색(BFS: Breadth-First Search)을 사용하면 두 항목 간의 최단 경로를 찾을 수 있다.
in Algorithm on Understanding, Algorithm
너비 우선 탐색(BFS: Breadth-First Search)을 사용하면 두 항목 간의 최단 경로를 찾을 수 있다.
in Algorithm on Understanding, Algorithm
in Algorithm on Understanding, Algorithm
Divide and Conquer Strategy는 문제를 해결하는 새로운 사고 방식으로 새로운 문제를 풀어낼 수 있는 한가지 방법이 될 수 있다. Quick-sort는 분할 정복을 사용하는 전략 알고리즘이다.
in Algorithm on Understanding, Algorithm
의사코드(Pseudocode)란 문제와 풀이 방법을 간단한 코드 형태로 설명한 것이다. 코드처럼 보이지만 실제로는 인간의 언어와 비슷한 구조이다.
in Algorithm on Understanding, Algorithm
컴퓨터 메모리에 여러 개의 데이터를 저장해야 한다면 배열(Array)과 리스트(List)라는 두 가지 방법 중 하나를 사용해야 한다.
in JavaScript on Underscore
_.identity = (val) => val;
```javascript _.first = (array, n) => n === undefined ? array[0] : array.slice(0, n)
in Algorithm on Understanding, Algorithm
in DataBase on Data, Structure