CS 132 Assignment 4 Augment the menu-driven program to manipulate a linked list of integers giving the user the following additional options: 1. A function that returns the number of occurrences of a given element in a list. The number sought will be a parameter. 2. A function find the smallest element in the list 3. A function to return the kth element in a list. 4. A function to delete the kth element in the list. . 5: A function to delete all occurences of a given element Use functions for the options. * Modify this for a linked list of personType.