mirror of
https://github.com/TheAlgorithms/Python.git
synced 2024-11-24 05:21:09 +00:00
7f04e5cd34
* spelling corrections * review * improved documentation, removed redundant variables, added testing * added type hint * camel case to snake case * spelling fix * review * python --> Python # it is a brand name, not a snake * explicit cast to int * spaces in int list * "!= None" to "is not None" * Update comb_sort.py * various spelling corrections in documentation & several variables naming conventions fix * + char in file name * import dependency - bug fix Co-authored-by: John Law <johnlaw.po@gmail.com>
51 lines
1.2 KiB
Python
51 lines
1.2 KiB
Python
"""
|
|
This is pure Python implementation of linear search algorithm
|
|
|
|
For doctests run following command:
|
|
python -m doctest -v linear_search.py
|
|
or
|
|
python3 -m doctest -v linear_search.py
|
|
|
|
For manual testing run:
|
|
python linear_search.py
|
|
"""
|
|
|
|
|
|
def linear_search(sequence, target):
|
|
"""Pure implementation of linear search algorithm in Python
|
|
|
|
:param sequence: some sorted collection with comparable items
|
|
:param target: item value to search
|
|
:return: index of found item or None if item is not found
|
|
|
|
Examples:
|
|
>>> linear_search([0, 5, 7, 10, 15], 0)
|
|
0
|
|
|
|
>>> linear_search([0, 5, 7, 10, 15], 15)
|
|
4
|
|
|
|
>>> linear_search([0, 5, 7, 10, 15], 5)
|
|
1
|
|
|
|
>>> linear_search([0, 5, 7, 10, 15], 6)
|
|
|
|
"""
|
|
for index, item in enumerate(sequence):
|
|
if item == target:
|
|
return index
|
|
return None
|
|
|
|
|
|
if __name__ == "__main__":
|
|
user_input = input("Enter numbers separated by comma:\n").strip()
|
|
sequence = [int(item) for item in user_input.split(",")]
|
|
|
|
target_input = input("Enter a single number to be found in the list:\n")
|
|
target = int(target_input)
|
|
result = linear_search(sequence, target)
|
|
if result is not None:
|
|
print(f"{target} found at positions: {result}")
|
|
else:
|
|
print("Not found")
|