Answers for "lINEAR SEARCH python geeks for geeks"

1

linear search python

def linear_search(a, key):
	position = 0
	flag = False
	while position < len(a) and not flag:
		if a[position] == key:
			flag = True
		else:
			position = position + 1
	return flag
Posted by: Guest on February-09-2020
0

linear search in python using list

def linear_search(myList,item):
    for i in range(len(myList)):
        if myList[i]==item:
            return i
    return -1

myList = [1,7,6,5,8]
print("Element in List :", myList)
x = int(input("enter searching element :"))

result = linear_search(myList,x)
if result==-1:
     print("Element not found in the list")
else:
     print( "Element " + str(x) + " is found at position %d" %(result))
Posted by: Guest on July-28-2020

Code answers related to "lINEAR SEARCH python geeks for geeks"

Python Answers by Framework

Browse Popular Code Answers by Language