// 예전에 멋도 멋도 모르구..마구잡이로 작성한 리스트 ... 그저 한숨만쉬는? ㅋㅋ // 그냥 벡터 쓰는게 낳을지도몰랐던거라는 뒤늦은 후회중?이라할까 template struct T_Link { T temp; int id; T_Link* link; }; template class Temp_Link //링크드 리스트를 관리하는 함수 { private: T_Link* back_link; int linkMax; public: T_Link* t_link; public: Temp_Link(T temp); Temp_Link(); //void NextLink(); bool NextLink(); bool NextLink(int _num); bool SerchId(int _id); bool SerchIdFree(in..