已知如下11个数据元素的有序表:
(5,16,20,27,30,36,44,55,60,67,71)请给出查找60关键字数据元素的顺序查找算法
环境: DevC++ 5.11、CodeBlocks20.03、VC++6.0
目的:掌握 顺序查找过程及算法实现
该怎样运用Python语言编写相关代码进行实验?
python实现
temp = list((5,16,20,27,30,36,44,55,60,67,71))
for index, num in enumerate(temp):
if num == 60:
print(index, num)