[이산수학] 알고리즘 선형탐색 이진탐색 정렬 알고리즘
알고리즘 컴퓨터 프로그래밍의 기초/ 기반입니다. 알고리즘은 input, output, definiteness(명확성), correctness(정확성), finiteness(유한성), effectivenesS(효율성), generality(일반성) 등이 있습니다. 결정성은 각 단계의 중간 결과는 유일하고 그리고 입력과 이전 단계의 결과에 의해서만 결정됩니다. 의사코드 (3개의 수 중 최대의 수 찾기) Algorithm to find the largest of three numbers a, b, c Input : a, b, c Output : large(the largest of a, b, and c) procedure max3(a, b, c:integers) { large := a if (b > large..