#include #include #include #include #include #include using namespace std;int id_counter = 0;struct Song; // 전방 선언struct Artist{ string name; list songs; // 이제 Song*를 참조할 수 있음 Artist() {} Artist(string name) : name(name) {}};struct Song{ int index; string title, album, mv_url; Artist* artist; Song() {} Song(string ti, Artist* art, string alb, string mv) : titl..