Search
 
SCRIPT & CODE EXAMPLE
 
CODE EXAMPLE FOR PYTHON

th most effective search methods in python with example

def LinearSearch(lys, element):
    for i in range (len(lys)):
        if lys[i] == element:
            return i
    return -1
So if we use the function to compute:

>>> print(LinearSearch([1,2,3,4,5,2,1], 2))
Source by stackabuse.com #
 
PREVIOUS NEXT
Tagged: #effective #search #methods #python
ADD COMMENT
Topic
Name
7+4 =