Skip to content

Latest commit

 

History

History

Folders and files

NameName
Last commit message
Last commit date

parent directory

..
 
 

1.2-1

Give an example of an application that requires algorithmic content at the application level, and discuss the function of the algorithms involved.

Solution

E-commerce's product lists can be sorted by price, popularity, etc. These are all algorithms that need to be implemented at the application level. For sorting a product list by price we could use a algorithm such as Mergesort which guarantees that the worst case running time is O(nlogn).