
Patrick B. answered 03/15/21
Math and computer tutor/teacher
linear search is O(n) : one for loop passes through the array
binary search is O( log N) : Half the array gets searched
bubble sort is O(n^2) : for each pass of the array, performs another pass