Notice
Recent Posts
Recent Comments
Link
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
Tags
- Data Structure
- database
- Binary Tree
- Number Theory
- greedy
- geometry
- Tree
- array
- 구현
- Math
- Stack
- Binary Search
- SQL
- 코딩테스트
- Method
- bit manipulation
- string
- simulation
- two pointers
- Class
- hash table
- java
- Counting
- sorting
- 코테
- implement
- Matrix
- 자바
- dynamic programming
- 파이썬
Archives
- Today
- Total
코린이의 소소한 공부노트
Sequential Search 본문
1. Problem
- n개의 요소가 담긴 배열 S에서 x를 찾아보자
2. Input
1) 양수 n
2) 배열 S indexed from 1 to n
3) key x
3. Output
1) x의 위치
2) S에 x가 없다면 0을 반환
4. PseudoCode
index seqsearch(int n, const keytype[] S, keytype x, index location){
location = 1;
while(location<=n && S[location]!=x)
location++;
if(location>n)
location = 0;
return location;
}
5. Example
class Test {
public static void main(String[] args){
int[] arr = {5, 9, 3, 10, 6, 2, 1};
int a = 6;
int index_a = seqsearch(arr.length, arr, a);
System.out.println(a +"의 위치: " + index_a); // 6의 위치: 5
int b = 7;
int index_b = seqsearch(arr.length, arr, b);
System.out.println(b +"의 위치: " + index_b); // 7의 위치: 0
}
static int seqsearch(int n, int[] S, int x){
int location = 0;
while(location<n && S[location]!=x) // 실제 인덱스는 0부터
location++;
return location<n ? location+1 : 0;
}
}
- worst T(n) = n (찾는 요소가 가장 마지막에 있을 경우)
- average T(n) = (n+1)/2
- best T(n) = 1 (찾는 요소가 맨 앞에 있을 경우)
'Back-End > Algorithm' 카테고리의 다른 글
n-th Fibonacci Term (Recursive) (0) | 2023.02.22 |
---|---|
Binary Search (iterative) (0) | 2023.02.22 |
Matrix Multiplication (0) | 2023.02.22 |
Exchange Sort (0) | 2023.02.22 |
Add Array Members (0) | 2023.02.22 |