This is an old revision of the document!
이 과제에서는 11/27에 작성한 Queue클래스를 사용하여 Dancing Partner Matching 프로그램을 개발하는 것을 목표로 한다.
M,Minho M,John F,Julie M,Brad M,George F,Brenda M,Obama F,Scarlet
위에서 보여준 people.txt를 기준으로 실행 예:
Dancing team 1: Minho and Julie Dancing team 2: John and Brenda Dancing team 3: Brad and Scarlet Men waiting partners: 2 The first waiting partner: George
제출할 코드
#include <iostream>
// 필요하면 추가
using namespace std;
class Queue {
// 작성. 11/27 코드를 수정.
};
int main() {
// 작성
}