Notice
Recent Posts
Recent Comments
초코레
집합 본문
배열로 집합 만들기
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 | //int형 집합 public class IntSet { private int max; //집합의 최대 개수 private int num; //집합의 요소 개수 private int[] set; //집합 본체 public IntSet(int capacity) { num = 0; max = capacity; try { set = new int[max]; // 집합 배열 생성 } catch (OutOfMemoryError e) { // 배열 생성 실패 max = 0; } } //집합의 최대 개수 public int capacity() { return max; } //집합의 요소 개수 public int size() { return num; } //집합에서 n을 검색한다 (index 반환) public int indexOf(int n) { for (int i = 0; i < num; i++) { if (set[i] == n) { return i; } } return -1; } //집합에 n이 있는지 없는지 확인한다 public boolean contains(int n) { return (indexOf(n) != -1) ? true : false; } //집합에 n을 추가한다 public boolean add(int n) { if (num >= max || contains(n) == true) { //가득 찼거나 n이 이미 존재 return false; } else { set[num++] = n; //가장 마지막 자리에 추가 return true; } } //집합에서 n을 삭제 public boolean remove(int n) { int idx; if (num <= 0 || (idx = indexOf(n)) == -1) { //비어있거나 n이 존재하지 않다 return false; } else{ set[idx] = set[--num]; //마지막 요소를 삭제한 곳으로 옮긴다 return true; } } //집합 s에 복사 public void copyTo(IntSet s) { int n = (s.max < num) ? s.max : num; //복사할 요소 개수 for (int i = 0; i < n; i++) { s.set[i] = set[i]; } s.num = n; } //집합 s를 복사 public void copyFrom(IntSet s) { int n = (max < s.num) ? max : s.num; //복사할 요소 개수 for (int i = 0; i < n; i++) { set[i] = s.set[i]; } num = n; } //집합 s와 같은지 확인 public boolean equalTo(IntSet s) { if (num != s.num) { return false; } for (int i = 0; i < num; i++) { int j = 0; for (; j < s.num; j++) { if (set[i] == s.set[j]) { break; } } if (j == s.num) { return false; } } return true; } //집합 s1과 s2의 합집합을 복사 public void unionOf(IntSet s1, IntSet s2) { copyFrom(s1); //집합 s1을 복사한다 for (int i = 0; i < s2.num; i++) { //집합 s2의 요소를 추가한다 add(s2.set[i]); } } //"{a b c}"의 형식의 문자열로 표현을 바꾼다 public String toString() { StringBuffer temp = new StringBuffer("{"); for (int i = 0; i < num; i++) { temp.append(set[i] + " "); } temp.append("}"); return temp.toString(); } //집합이 비어있는가? (공집합인지 확인) public boolean isEmpty() { return num == 0; } //집합이 가득 찼는가? public boolean isFull() { return num >= max; } //집합을 비움(모든 요소를 삭제) public void clear() { num = 0; } //집합 s와의 합집합 public boolean add(IntSet s) { boolean flag = false; for (int i = 0; i < s.num; i++) { if(add(s.set[i]) == true) { flag = true; } } return flag; } //집합 s와의 교집합 public boolean retain(IntSet s) { boolean flag = false; for (int i = 0; i < num; i++) { if(s.contains(set[i]) == false) { remove(set[i]); flag = true; } } return flag; } //집합 s와의 차집합 public boolean remove(IntSet s) { boolean flag = false; for (int i = 0; i < num; i++) { if (s.contains(set[i]) == true) { remove(set[i]); flag = true; } } return flag; } //집합 s의 부분집합인가요? public boolean isSubsetOf(IntSet s) { for (int i = 0; i < num; i++) { int j = 0; for (; j < s.num; j++) { if (set[i] == s.set[j]) { break; } } if (j == s.num) { return false; } } return true; } //집합 s의 진부분집합인가요? public boolean isProperSubsetOf(IntSet s) { if (num >= s.num) { return false; } return isSubsetOf(s); } //집합 s1과 s2의 교집합을 복사 public void intersectionOf(IntSet s1, IntSet s2) { clear(); for (int i = 0; i < s1.num; i++) { if (s2.contains(s1.set[i])) { add(s1.set[i]); } } } //집합 s1과 s2의 차집합을 복사 public void differenceOf(IntSet s1, IntSet s2) { clear(); for (int i = 0; i < s1.num; i++) { if (!s2.contains(s1.set[i])) { add(s1.set[i]); } } } } | cs |
'알고리즘' 카테고리의 다른 글
KMP법 (0) | 2020.01.01 |
---|---|
브루트-포스법 (0) | 2020.01.01 |
도수 정렬 (0) | 2019.12.30 |
힙 정렬(heap sort) (0) | 2019.12.29 |
병합 정렬(merge sort) (0) | 2019.12.29 |