Rene_アルゴリズムとデータ構造

# Searching an element in a list/array in python

# can be simply done using \'in\' operator

# Example:

# if x in arr:

# print arr.index(x)

 

# If you want to implement Linear Search in python

 

# Linearly search x in arr[]

# If x is present then return its location

# else return -1

 

def search(arr, x):

 
   for i in range(len(arr)): 
 
       if arr[i] == x: 
           return i 
 
   return -1

The time com


トップ   新規 一覧 検索 最終更新   ヘルプ   最終更新のRSS