클래스를 이용한 집합 구현(C++프로그래밍을 통한 컴퓨터의 이해 10장42번문제)
본 자료는 미만의 자료로 미리보기를 제공하지 않습니다.
닫기
  • 1
해당 자료는 0페이지 까지만 미리보기를 제공합니다.
0페이지 이후부터 다운로드 후 확인할 수 있습니다.

소개글

클래스를 이용한 집합 구현(C++프로그래밍을 통한 컴퓨터의 이해 10장42번문제)에 대한 보고서 자료입니다.

본문내용

class Set
{
private:
int arySize; //maximum size of a set
int currentSize; //current size of a set
int* data; //pointer for data
string set_name; //name of a set


public:
Set();
Set(int asize, string setName);
Set(const Set& copycon);
~Set(){}
void store(int asize, string set_name);
void print();
void add (int element);
void remove(int element);
void sort();
int exist(int element);
friend void union_set(Set &set1, Set &set2);
friend void intersection_set(Set &set1, Set &set2);
friend void difference_of_set(Set &set1, Set &set2);

키워드

  • 가격4,000
  • 페이지수1페이지
  • 등록일2010.11.09
  • 저작시기2010.2
  • 파일형식압축파일(zip)
  • 자료번호#638189
본 자료는 최근 2주간 다운받은 회원이 없습니다.
청소해
다운로드 장바구니