TreeSet1 [자료구조] TreeSet - 데이터의 순서는 자연적인 순서(오름차순)대로 유지가 된다. - 이진 탐색 트리(Binary Search Tree) 구조로 되어있다. - 이진 탐색 트리 중에서도 레드-블랙 트리(Red-Black Tree)로 구현되어 있다. 생성 및 선언 import java.util.Collections; import java.util.TreeSet; public class TreeSetDemo{ public static void main(String[] args) { TreeSet set1 = new TreeSet(); // TreeSet 생성 TreeSet set2 = new TreeSet(); // new에서 타입 파라미터 생략가능 TreeSet set3 = new TreeSet(set1); // set1의 모.. 2023. 11. 7. 이전 1 다음