Comparable의 compareTo 구현 사례 -Integer 랩퍼클래스
CODEDRAGON ㆍDevelopment/Algorithm, DataStructure
반응형
Comparable의 compareTo 구현 사례 -Integer 랩퍼클래스
Integer 클래스의 코드
C:\CodeLab\src\java\lang\Integer.java
Comparable의 compareTo(T o)추상메소드를 구현하고 있습니다.
두 Integer객체에 저장된 int값(value)을 비교해서 작으면 -1, 같으면 0, 크면 1을 반환하는 것을 알 수 있습니다.
TreeSet에 Integer인스턴스를 저장했을 때 정렬되는 기준이 compareTo()메소드에 의한 것입니다.
'Development > Algorithm, DataStructure' 카테고리의 다른 글
Algorithm Visualizer (0) | 2017.05.15 |
---|---|
이진 트리(Binary Tree), 이진 트리(Binary Tree)의 코드화 (0) | 2017.05.01 |
이진 검색(binary search) (0) | 2017.05.01 |
이진 탐색 트리(Binary Search Tree), 이진 트리 구조 도식도, 이진 검색 트리 저장 원리 (0) | 2017.05.01 |
The Sound of Sorting - "Audibilization" and Visualization of Sorting Algorithms - 15 Sorting Algorithms in 6 Minutes (0) | 2017.02.15 |