Linear Search

What?

When?

How?

Steps

start procedure
   for each item in the list
      if match item == value
         return the item's location
      end if
   end for
end procedure
def linear_search(elems: list, target: int) -> bool:
    """
    @def: Search an unordered list to find a target integer
		@return: bool 
						 => true,  if target in array 
						 => false, otherwise
    """
		for elem in elems:
			if elem == target:
				return True
	
		return False

Why?

Complexity Big-O
Time O(n)
Space O(1)

Binary Search

What?

When?

How?