Question: Write a program in C# to perform a bird survey to count the number of birds of each species in an area. Create a class
Write a program in C# to perform a bird survey to count the number of birds of each species in an area. Create a class BirdSurvey that is a linked list. The linked list can be one way linked list, circular linked list or a doubly linked list; whichever you choose.
BirdSurvey should have the following operations in addition to those normally found in your linked list class:
add(bird) adds the bird species bird to the end of the list, if it is not already there. sets its count to 1; otherwise, adds 1 to the count for bird.
getCount(bird) returns the count associated with the species bird. If bird is not on the list, returns zero.
getReport() displays the name and count for each bird species on the list.
Step by Step Solution
There are 3 Steps involved in it
Get step-by-step solutions from verified subject matter experts
