Respuesta :

tonb

Answer:

initialize variable "position" with first location in th elist

initialize variable "largest" with value at first location

loop over all list positions:

   at each position, check if value there is larger than "largest" if so:

      update position

      update largest

Explanation:

This is a linear algorithm, meaning the time it takes to complete grows linearly with the size of the list.