728x90
반응형
수행 코드
dataSource = [12,10,25,5,7,96]
indexValue = 0
toSearchValue = 10
sizeData = len( dataSource )
#print("sizeData =", sizeData )
while( indexValue < sizeData ):
if( dataSource[indexValue] == toSearchValue ):
print("탐색 성공 at" , indexValue, "index" )
break
indexValue += 1
if(indexValue == sizeData ):
print( toSearchValue, "를 찾지 못함")
print("Done", flush=True)
수행결과
PS D:\PythonCode> python .\LinearSeach.py
탐색 성공 at 1 index
Done
PS D:\PythonCode>
728x90
반응형
'프로그램언어(JAVA , Python)' 카테고리의 다른 글
[Python] 버블정렬(Bubble Sorting) (0) | 2023.11.30 |
---|---|
[Python] 이진탐색( Binary Search) (0) | 2023.11.30 |
[Python] tkinter를 활용한 구구단 게임. (0) | 2023.11.29 |
웹 통신 프로토콜... (0) | 2023.11.27 |
[javascript] 웹브라우저 자신을 닫기.( event, 호출 함수 ) (0) | 2023.11.27 |