欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页

python3应用实例

程序员文章站 2022-07-15 08:10:54
...

python3应用实例

1.python3是实现线性查找

原理
线性查找指按一定的顺序检查数组中每一个元素,直到找到所要寻找的特定值为止。

实现

  1  def search(alist,n,x):
  2     for i in range(0,n):
  3         if alist[i]==x:
  4             return i
  5     return -1
  6 
  7 alist=[1,2,3,4,5,6,7]
  8 n=len(alist)
  9 x=10
 10 m=search(alist,n,x)
 11 if m==-1:
 12     print('所查找元素不在其中')
 13 else:
 14 
 15     print('所查找的元素{0}的索引值为{1}'.format(x,m))