#include #include #include #include #include #include #include using namespace std; void findindex(string var); void rep(std::string &str, string c, string cr); typedef struct { string title; string mins, secs; int minutes, seconds; string time; int track; } Song; typedef struct { map songs; string name; string genre; int time; } Album; typedef struct artist { map albums; string name; int time; int nsongs; } Artist;