/* * * ********************************************************** * * Author: K. Holcomb * * Class describing some data about bird observations. * * Changelog: Modified from old student homework 20170410 * * * ********************************************************** * */ #include #include #include using namespace std; typedef struct { //Input values. string commonName; vector observations; } birdData; vector stats(birdData); vector minmax(birdData, vector);