자바 구조 체 정렬 방법
23460 단어 Java
1. Comparator
대상 collection 을 강제로 정렬 하 는 비교 함수 입 니 다. Comparator 를 Collections. sort 또는 Arrays. sort 에 전달 할 수 있 습 니 다.
// int compare(Object o1, Object o2);
// @return o1 、 o2, 、 。
import java.util.Arrays;
import java.util.Comparator;
import java.util.Scanner;
class node{
int x, y;
}
class mycmp implements Comparator<node>{
public int compare(node o1, node o2) {
if(o1.x == o2.x)
return o1.y-o2.y; // y
else
return o1.x-o2.x;
}
}
public class Main {
static int maxn = 105;
static node[] a = new node[maxn];
public static void main(String[] args) {
Scanner sc = new Scanner(System.in);
int n;
while(sc.hasNext())
{
n = sc.nextInt();
for(int i = 0; i < n; i++)
{
a[i] = new node(); //
a[i].x = sc.nextInt();
a[i].y = sc.nextInt();
}
Arrays.sort(a, 0, n, new mycmp());
for(int i = 0; i < n; i++)
System.out.println(a[i].x + " " + a[i].y);
}
}
}
2. 비교 가능
이 인 터 페 이 스 를 실현 하 는 대상 목록 (배열) 은 Collections. sort 또는 Arrays. sort 를 통 해 자동 으로 정렬 할 수 있 습 니 다.
// int compareTo(Object o);
// @return 、 o, 、 。
import java.util.Arrays;
import java.util.Scanner;
class node implements Comparable<node>{
int x, y;
public int compareTo(node a) {
if(this.x == a.x)
return this.y - a.y; // y
else
return this.x - a.x;
}
}
public class Main {
static int maxn = 105;
static node[] a = new node[maxn];
public static void main(String[] args) {
Scanner sc = new Scanner(System.in);
int n;
while(sc.hasNext())
{
n = sc.nextInt();
for(int i = 0; i < n; i++)
{
a[i] = new node(); //
a[i].x = sc.nextInt();
a[i].y = sc.nextInt();
}
Arrays.sort(a, 0, n);
for(int i = 0; i < n; i++)
System.out.println(a[i].x + " " + a[i].y);
}
}
}
사용법 예시:
import java.util.*;
class S implements Comparable<S>
{
int x,y;
public S(int x ,int y) {
this.x = x;
this.y = y;
}
public int compareTo(S a)
{
if(this.x-a.x != 0)
return this.x-a.x; // x
else return this.y-a.y; // x , y
}
}
public class Test
{
public static void main(String args[])
{
Scanner in=new Scanner (System.in);
int n,i;
n=in.nextInt();
S d[] = new S[10];
for(i=0; i<n; i++)
{
int k1 = in.nextInt();
int k2 = in.nextInt();
d[i] = new S(k1,k2);
}
Arrays.sort(d, 0, n); // n ,Arrays.sort(d)
for(i=0; i<n; i++)
System.out.println(d[i].x+" "+d[i].y);
}
}
// :
3
4 5
2 4
2 3
2 3
2 4
4 5
이 내용에 흥미가 있습니까?
현재 기사가 여러분의 문제를 해결하지 못하는 경우 AI 엔진은 머신러닝 분석(스마트 모델이 방금 만들어져 부정확한 경우가 있을 수 있음)을 통해 가장 유사한 기사를 추천합니다:
JPA + QueryDSL 계층형 댓글, 대댓글 구현(2)이번엔 전편에 이어서 계층형 댓글, 대댓글을 다시 리팩토링해볼 예정이다. 이전 게시글에서는 계층형 댓글, 대댓글을 구현은 되었지만 N+1 문제가 있었다. 이번에는 그 N+1 문제를 해결해 볼 것이다. 위의 로직은 이...
텍스트를 자유롭게 공유하거나 복사할 수 있습니다.하지만 이 문서의 URL은 참조 URL로 남겨 두십시오.
CC BY-SA 2.5, CC BY-SA 3.0 및 CC BY-SA 4.0에 따라 라이센스가 부여됩니다.