순차 탐색
def sequential(lst, num):
for i in range(len(lst)):
if lst[i] == num:
return i
return -1
'Computer Science > 자료구조' 카테고리의 다른 글
자료구조 7강 -2 | Search | 숙명여대 학점교류 (0) | 2021.12.30 |
---|---|
자료구조 | Binary Search | Search (0) | 2021.12.29 |
자료구조 | Deque Double Ended Queue | Linked List (0) | 2021.12.29 |
자료구조 | Linked Queue, Linked Stack | Linked Lists (0) | 2021.12.29 |
자료구조 | Singly Linked List | Linked List (0) | 2021.12.29 |