목록JAVA 꿀팁 (3)
도토리 줍는 개발자 감자
Map.Entry값을 받아온 뒤 Collections.sort,Comparator 사용하여 정렬하면됨. 여기서 Comparator 함수의 return 값으로 o2.getValue().compareTo(o1.getValue()) 를 작성하면 내림차순 정렬이 된다. compareTo는 BigInteger의 메서드임! 참고: https://docs.microsoft.com/ko-kr/dotnet/api/system.numerics.biginteger.compareto?view=net-6.0 BigInteger1.compareTo(BigInteger2) 반환 값 설명 0보다 작음 BigInteger1이 BigInteger2 보다 작다. 0 BigInteger1과 BigInteger2 값이 같다. 0보다 큼 Bi..
Queue 구현할 때 2차원 배열의 x,y인덱스를 두 개 삽입하는 경우가 있음. 클래스를 생성해서 해도되지만 Point 클래스로 해도된다. java.awt.Point 란? (간략하게 설명하겠음!) https://docs.oracle.com/javase/7/docs/api/java/awt/Point.html Point (Java Platform SE 7 ) Changes the point to have the specified location. This method is included for completeness, to parallel the setLocation method of Component. Its behavior is identical with move(int, int). docs.oracl..