Fill in the Blanks Algorithm for linear searchOnline version Fill in the blanks for an algorithm for a linear search by James 1 Repeat until written linear list position instructions searched first Compare next The for performing a search can be as : ? Take a of data and an item that is being for ( the search item ) ? steps a - c starting from the item in the list , you find the search item or until the end of the list is reached : ? the item at the current to the search item ? If the item at the current position is equal to the search item , then stop searching . ? Otherwise , go to the item in the list .