Question: def _linear_search(self, element): ------------------------------------------------------- Searches for the first occurrence of element in the List. Private helper method - used only by other ADT methods.
def _linear_search(self, element): """ ------------------------------------------------------- Searches for the first occurrence of element in the List. Private helper method - used only by other ADT methods. Use: i = self._linear_search(element) ------------------------------------------------------- Parameters: element - a data element (?) Returns: i - the index of element in the List, -1 if element is not found (int) ------------------------------------------------------- """
Step by Step Solution
There are 3 Steps involved in it
Get step-by-step solutions from verified subject matter experts
