Consider a variation of sequential search that scans a list to return the number of occurrences of a given search key in the list. Does its efficiency differ from the efficiency of classic sequential search?
Yes. This algorithm does not have a “best case”, because it has to scan to list to the end.