. Create a List [ Create a list that will be empty at the creation time. Make void create( void ) function to achieve this task. ] 2. Determine whether the list is empty. [ Make bool empty( void ) function that shows whether the list is empty or not.] 3. Insert a Value at the start of the list [ Make void addatstart( int ) function to insert value at the start of the list.] at the given location [ Make void addatspecific( int, int ) function to insert value at the specific location in the list.] at the end of the list [ Make void addatend( int ) function to insert value at the end of the list.] 4. Delete at the start of the list [ Make void deleteatstart( void ) function to delete value from the start of the list.] at the given location [ Make void deleteatspeific(void) function to delete value at the specific location of the list.] at the end of the list [ Make void deleteatend(void) function to delete value at the end of the list.] 5. Size of the List [ Make int size(void) function that will return the size of the list.] 6. Search value from the list. [ Make void search( int ) function that will search the given value in list.] 7. Swapping two values of the list. [ Make void swap( int first_location, int second_location ) function that will swap the values at the given location from the list.] 8. Display the list [ Make void search(void) function that will display the list values.]
U
User 11203537
@User 11203537