목록Computer Science/알고리즘 (11)
가자미의 개발이야기
[알고리즘] 1. 알고리즘의 효율성, 분석, 차수
알고리즘이란 어떤 문제를 해결할 수 있는 단계 별 절차 Sequential Search Algorithm //java persue code public static index SeqSearch(int n, keyType[] S, keyType x){ index location =1; while(location n) location = 0; return location; } Binary Search Algorithm 정렬된 상황에서만 가능 //java persue code public static idex BinSearch(int n, keyType[] S, keyType x){ index location, low, high, mid; low = 1; high = n; location = 0; while(..
Computer Science/알고리즘
2021. 3. 3. 08:44