일렬로 되어 있는 자료를 순서대로 검색하는 방법
검색 과정
찾고자 하는 원소의 순서에 따라 비교회수가 결정됨
시간 복잡도 : O(n)
정렬되어 있는 경우
def sequentialSearch(lst,n,key):
i = 0
while i <n and a[i] !=key :
i += 1
if i<n :
return i
else :
return -1
def sequentialSearch2(lst,n,key) :
i = 0
while i<n and a[i]<key :
i +=1
if i<n and a[i] == key:
return i
else :
return -1