A linear search algorithm is a simple searching algorithm that checks each element in a list or array, one by one, until it finds the target value.
Linear Search Algorithm cheat sheet for homework
The specific value being searched for in the list or array.
The position of an element within a list or array.
Each time the linear search algorithm goes through a loop to compare an element with the target value.