属性によってオブジェクトのリストをグループ化する:Java


97

特定のオブジェクトの属性(場所)を使用してオブジェクト(学生)のリストをグループ化する必要があります。コードは次のようになります。

public class Grouping {

    /**
     * @param args the command line arguments
     */
    public static void main(String[] args) {

        List<Student> studlist = new ArrayList<Student>();
        studlist.add(new Student("1726", "John", "New York"));
        studlist.add(new Student("4321", "Max", "California"));
        studlist.add(new Student("2234", "Andrew", "Los Angeles"));
        studlist.add(new Student("5223", "Michael", "New York"));
        studlist.add(new Student("7765", "Sam", "California"));
        studlist.add(new Student("3442", "Mark", "New York"));

        //Code to group students by location
        /*  Output should be Like below
            ID : 1726   Name : John Location : New York
            ID : 5223   Name : Michael  Location : New York
            ID : 4321   Name : Max  Location : California
            ID : 7765   Name : Sam  Location : California    

         */

        for (Student student : studlist) {
            System.out.println("ID : "+student.stud_id+"\t"+"Name : "+student.stud_name+"\t"+"Location : "+student.stud_location);
        }


    }
}

class Student {

    String stud_id;
    String stud_name;
    String stud_location;

    Student(String sid, String sname, String slocation) {

        this.stud_id = sid;
        this.stud_name = sname;
        this.stud_location = slocation;

    }
}

クリーンな方法を教えてください。


2
場所をキーとして、学生リストを値として持つハッシュマップ。
オモロ2014

場所で並べ替えることで問題は解決しますか、それとも他に何かありますか?
ウォーロード

コンパレータを使用して、場所で並べ替えてください。
pshemek 2014

1
@Warlordはい、しかし、もし私がそれをグループ化できれば、ロケーション
ごとの

@Omoroコードで手がかりを教えてください、私はハッシュマップにあまり慣れていない
Dilukshan Mahendra

回答:


130

これで、生徒オブジェクトがHashMapwith locationIDasキーに追加されます。

HashMap<Integer, List<Student>> hashMap = new HashMap<Integer, List<Student>>();

このコードを繰り返し、学生をに追加しますHashMap

if (!hashMap.containsKey(locationId)) {
    List<Student> list = new ArrayList<Student>();
    list.add(student);

    hashMap.put(locationId, list);
} else {
    hashMap.get(locationId).add(student);
}

特定の場所の詳細を持つすべての学生が必要な場合は、これを使用できます。

hashMap.get(locationId);

これにより、同じロケーションIDを持つすべての学生が取得されます。


4
Locationオブジェクトのリストを宣言し、次の行で前のリストにStudentオブジェクトを追加すると、エラーがスローされます。
OJVM

hashMap.contanisKey()がfalseを返す場合、hashMap.get()はnullを返します。最初のhashMap.get()を呼び出して結果をローカル変数に格納し、このローカル変数がnullかどうかを確認する場合、containsKey()メソッドの呼び出しを保存できます
Esteve

246

Java 8の場合:

Map<String, List<Student>> studlistGrouped =
    studlist.stream().collect(Collectors.groupingBy(w -> w.stud_location));

これは、Studentクラスstud_locationでFriendlyと指定されているためです。のみStudentの同じパッケージで定義されているクラスとクラスStudentがアクセスできますstud_location。のpublic String stud_location;代わりに置く場合String stud_location;、これはうまくいくはずです。または、getter関数を定義できます。cs.princeton.edu/courses/archive/spr96/cs333/java/tutorial/java/…の
Eranga

32
Map<String, List<Student>> map = new HashMap<String, List<Student>>();

for (Student student : studlist) {
    String key  = student.stud_location;
    if(map.containsKey(key)){
        List<Student> list = map.get(key);
        list.add(student);

    }else{
        List<Student> list = new ArrayList<Student>();
        list.add(student);
        map.put(key, list);
    }

}

8

Java 8の使用

import java.util.List;
import java.util.Map;
import java.util.stream.Collectors;
import java.util.stream.Stream;

class Student {

    String stud_id;
    String stud_name;
    String stud_location;

    public String getStud_id() {
        return stud_id;
    }

    public String getStud_name() {
        return stud_name;
    }

    public String getStud_location() {
        return stud_location;
    }



    Student(String sid, String sname, String slocation) {

        this.stud_id = sid;
        this.stud_name = sname;
        this.stud_location = slocation;

    }
}

class Temp
{
    public static void main(String args[])
    {

        Stream<Student> studs = 
        Stream.of(new Student("1726", "John", "New York"),
                new Student("4321", "Max", "California"),
                new Student("2234", "Max", "Los Angeles"),
                new Student("7765", "Sam", "California"));
        Map<String, Map<Object, List<Student>>> map= studs.collect(Collectors.groupingBy(Student::getStud_name,Collectors.groupingBy(Student::getStud_location)));
                System.out.println(map);//print by name and then location
    }

}

結果は次のようになります。

{
    Max={
        Los Angeles=[Student@214c265e], 
        California=[Student@448139f0]
    }, 
    John={
        New York=[Student@7cca494b]
    }, 
    Sam={
        California=[Student@7ba4f24f]
    }
}

この回答は、質問と同じ例に固執することで改善できます。また、結果は質問で要求された望ましい出力と一致しません。
Pim Hazebroek、

5

Java 8 groupingByコレクター

多分それは遅いですが、私はこの問題の改善されたアイデアを共有したいです。これは基本的に@Vitalii Fedorenkoの回答と同じですが、より手軽に試すことができます。

Collectors.groupingBy()グループ化ロジックを関数パラメーターとして渡すだけで使用でき、キーパラメーターマッピングを含む分割リストを取得できます。使用していることに注意してくださいOptional提供されたリストがあるときに使用されることは望まないNPEを避けるために、null

public static <E, K> Map<K, List<E>> groupBy(List<E> list, Function<E, K> keyFunction) {
    return Optional.ofNullable(list)
            .orElseGet(ArrayList::new)
            .stream()
            .collect(Collectors.groupingBy(keyFunction));
}

これで何でもgroupByできます。質問のここのユースケースについて

Map<String, List<Student>> map = groupBy(studlist, Student::getLocation);

多分あなたはこれもJava 8 groupingByコレクターへのガイドを見たいと思います


4

次のものを使用できます。

Map<String, List<Student>> groupedStudents = new HashMap<String, List<Student>>();
for (Student student: studlist) {
    String key = student.stud_location;
    if (groupedStudents.get(key) == null) {
        groupedStudents.put(key, new ArrayList<Student>());
    }
    groupedStudents.get(key).add(student);
}

//印刷

Set<String> groupedStudentsKeySet = groupedCustomer.keySet();
for (String location: groupedStudentsKeySet) {
   List<Student> stdnts = groupedStudents.get(location);
   for (Student student : stdnts) {
        System.out.println("ID : "+student.stud_id+"\t"+"Name : "+student.stud_name+"\t"+"Location : "+student.stud_location);
    }
}

4

コンパレータを使用してJavaでSQL GROUP BY機能を実装すると、コンパレータが列データを比較してソートします。基本的に、グループ化されたデータのように見えるソートされたデータを保持する場合、たとえば同じ繰り返し列データがある場合、ソートメカニズムは同じデータを維持しながらそれらをソートしてから、異なるデータである他のデータを探します。これは間接的に同じデータのGROUPINGと見なされます。

public class GroupByFeatureInJava {

    public static void main(String[] args) {
        ProductBean p1 = new ProductBean("P1", 20, new Date());
        ProductBean p2 = new ProductBean("P1", 30, new Date());
        ProductBean p3 = new ProductBean("P2", 20, new Date());
        ProductBean p4 = new ProductBean("P1", 20, new Date());
        ProductBean p5 = new ProductBean("P3", 60, new Date());
        ProductBean p6 = new ProductBean("P1", 20, new Date());

        List<ProductBean> list = new ArrayList<ProductBean>();
        list.add(p1);
        list.add(p2);
        list.add(p3);
        list.add(p4);
        list.add(p5);
        list.add(p6);

        for (Iterator iterator = list.iterator(); iterator.hasNext();) {
            ProductBean bean = (ProductBean) iterator.next();
            System.out.println(bean);
        }
        System.out.println("******** AFTER GROUP BY PRODUCT_ID ******");
        Collections.sort(list, new ProductBean().new CompareByProductID());
        for (Iterator iterator = list.iterator(); iterator.hasNext();) {
            ProductBean bean = (ProductBean) iterator.next();
            System.out.println(bean);
        }

        System.out.println("******** AFTER GROUP BY PRICE ******");
        Collections.sort(list, new ProductBean().new CompareByProductPrice());
        for (Iterator iterator = list.iterator(); iterator.hasNext();) {
            ProductBean bean = (ProductBean) iterator.next();
            System.out.println(bean);
        }
    }
}

class ProductBean {
    String productId;
    int price;
    Date date;

    @Override
    public String toString() {
        return "ProductBean [" + productId + " " + price + " " + date + "]";
    }
    ProductBean() {
    }
    ProductBean(String productId, int price, Date date) {
        this.productId = productId;
        this.price = price;
        this.date = date;
    }
    class CompareByProductID implements Comparator<ProductBean> {
        public int compare(ProductBean p1, ProductBean p2) {
            if (p1.productId.compareTo(p2.productId) > 0) {
                return 1;
            }
            if (p1.productId.compareTo(p2.productId) < 0) {
                return -1;
            }
            // at this point all a.b,c,d are equal... so return "equal"
            return 0;
        }
        @Override
        public boolean equals(Object obj) {
            // TODO Auto-generated method stub
            return super.equals(obj);
        }
    }

    class CompareByProductPrice implements Comparator<ProductBean> {
        @Override
        public int compare(ProductBean p1, ProductBean p2) {
            // this mean the first column is tied in thee two rows
            if (p1.price > p2.price) {
                return 1;
            }
            if (p1.price < p2.price) {
                return -1;
            }
            return 0;
        }
        public boolean equals(Object obj) {
            // TODO Auto-generated method stub
            return super.equals(obj);
        }
    }

    class CompareByCreateDate implements Comparator<ProductBean> {
        @Override
        public int compare(ProductBean p1, ProductBean p2) {
            if (p1.date.after(p2.date)) {
                return 1;
            }
            if (p1.date.before(p2.date)) {
                return -1;
            }
            return 0;
        }
        @Override
        public boolean equals(Object obj) {
            // TODO Auto-generated method stub
            return super.equals(obj);
        }
    }
}

上記のProductBeanリストの出力はここで行われ、GROUP BY基準が実行されます。ここで、ProductBeanのリストを指定した入力データがCollections.sort(リスト、必要な列のコンパレータのオブジェクト)に表示される場合、これはコンパレータの実装に基づいてソートされます下の出力でGROUPEDデータを確認できます。お役に立てれば...

    ********入力データをグループ化する前に、このように見えます******
    ProductBean [P1 11月17日月曜日09:31:01 IST 2014]
    ProductBean [P1 11月17日月曜日09:31:01 IST 2014]
    ProductBean [P2 20月11月17日09:31:01 IST 2014]
    ProductBean [P1 11月17日月曜日09:31:01 IST 2014]
    ProductBean [P3 60月11月17日09:31:01 IST 2014]
    ProductBean [P1 11月17日月曜日09:31:01 IST 2014]
    ******** PRODUCT_IDによるグループ化の後******
    ProductBean [P1 11月17日月曜日09:31:01 IST 2014]
    ProductBean [P1 11月17日月曜日09:31:01 IST 2014]
    ProductBean [P1 11月17日月曜日09:31:01 IST 2014]
    ProductBean [P1 11月17日月曜日09:31:01 IST 2014]
    ProductBean [P2 20月11月17日09:31:01 IST 2014]
    ProductBean [P3 60月11月17日09:31:01 IST 2014]

    ********価格別グループ化後******
    ProductBean [P1 11月17日月曜日09:31:01 IST 2014]
    ProductBean [P1 11月17日月曜日09:31:01 IST 2014]
    ProductBean [P2 20月11月17日09:31:01 IST 2014]
    ProductBean [P1 11月17日月曜日09:31:01 IST 2014]
    ProductBean [P1 11月17日月曜日09:31:01 IST 2014]
    ProductBean [P3 60月11月17日09:31:01 IST 2014]


1
こんにちは。同じ回答を複数回投稿しないでください。また、動作の説明と上記の質問の問題の解決方法に関する説明がないまま、未加工のコードを投稿しないでください。
マット

申し訳ありませんが、コードが複数回になる可能性があるため、コードの貼り付けに誤りがありました。投稿内容の説明を編集しました。今それがうまく見えることを願っていますか?
Ravi Beli 2014年

何か不足している、またはこのコードがフィールドごとにグループ化するのではなくソートしていますか?製品をIDでソートし、次に価格でソートします
Funder

0

次のように並べ替えることができます:

    Collections.sort(studlist, new Comparator<Student>() {

        @Override
        public int compare(Student o1, Student o2) {
            return o1.getStud_location().compareTo(o2.getStud_location());
        }
    });

あなたはあなたの学生クラスの場所のゲッターも持っていると仮定します。


3
なぜソート?問題は要素をグループ化することです!
Sankalp 2018年

0

あなたはこれを行うことができます:

Map<String, List<Student>> map = new HashMap<String, List<Student>>();
List<Student> studlist = new ArrayList<Student>();
studlist.add(new Student("1726", "John", "New York"));
map.put("New York", studlist);

キーは場所と学生の値リストです。したがって、後で使用するだけで学生のグループを取得できます。

studlist = map.get("New York");

0

あなたが使用できるguavaのをMultimaps

@Canonical
class Persion {
     String name
     Integer age
}
List<Persion> list = [
   new Persion("qianzi", 100),
   new Persion("qianzi", 99),
   new Persion("zhijia", 99)
]
println Multimaps.index(list, { Persion p -> return p.name })

それは印刷します:

[qianzi:[com.ctcf.message.Persion(qianzi、100)、com.ctcf.message.Persion(qianzi、88)]、zhijia:[com.ctcf.message.Persion(zhijia、99)]]


0
Function<Student, List<Object>> compositKey = std ->
                Arrays.asList(std.stud_location());
        studentList.stream().collect(Collectors.groupingBy(compositKey, Collectors.toList()));

group byに複数のオブジェクトを追加する場合はcompositKey、カンマで区切ってメソッドにオブジェクトを追加するだけです。

Function<Student, List<Object>> compositKey = std ->
                Arrays.asList(std.stud_location(),std.stud_name());
        studentList.stream().collect(Collectors.groupingBy(compositKey, Collectors.toList()));

0
public class Test9 {

    static class Student {

        String stud_id;
        String stud_name;
        String stud_location;

        public Student(String stud_id, String stud_name, String stud_location) {
            super();
            this.stud_id = stud_id;
            this.stud_name = stud_name;
            this.stud_location = stud_location;
        }

        public String getStud_id() {
            return stud_id;
        }

        public void setStud_id(String stud_id) {
            this.stud_id = stud_id;
        }

        public String getStud_name() {
            return stud_name;
        }

        public void setStud_name(String stud_name) {
            this.stud_name = stud_name;
        }

        public String getStud_location() {
            return stud_location;
        }

        public void setStud_location(String stud_location) {
            this.stud_location = stud_location;
        }

        @Override
        public String toString() {
            return " [stud_id=" + stud_id + ", stud_name=" + stud_name + "]";
        }

    }

    public static void main(String[] args) {

        List<Student> list = new ArrayList<Student>();
        list.add(new Student("1726", "John Easton", "Lancaster"));
        list.add(new Student("4321", "Max Carrados", "London"));
        list.add(new Student("2234", "Andrew Lewis", "Lancaster"));
        list.add(new Student("5223", "Michael Benson", "Leeds"));
        list.add(new Student("5225", "Sanath Jayasuriya", "Leeds"));
        list.add(new Student("7765", "Samuael Vatican", "California"));
        list.add(new Student("3442", "Mark Farley", "Ladykirk"));
        list.add(new Student("3443", "Alex Stuart", "Ladykirk"));
        list.add(new Student("4321", "Michael Stuart", "California"));

        Map<String, List<Student>> map1  =

                list
                .stream()

            .sorted(Comparator.comparing(Student::getStud_id)
                    .thenComparing(Student::getStud_name)
                    .thenComparing(Student::getStud_location)
                    )

                .collect(Collectors.groupingBy(

                ch -> ch.stud_location

        ));

        System.out.println(map1);

/*
  Output :

{Ladykirk=[ [stud_id=3442, stud_name=Mark Farley], 
 [stud_id=3443, stud_name=Alex Stuart]], 

 Leeds=[ [stud_id=5223, stud_name=Michael Benson],  
 [stud_id=5225, stud_name=Sanath Jayasuriya]],


  London=[ [stud_id=4321, stud_name=Max Carrados]],


   Lancaster=[ [stud_id=1726, stud_name=John Easton],  

   [stud_id=2234, stud_name=Andrew Lewis]], 


   California=[ [stud_id=4321, stud_name=Michael Stuart],  
   [stud_id=7765, stud_name=Samuael Vatican]]}
*/


    }// main
}
弊社のサイトを使用することにより、あなたは弊社のクッキーポリシーおよびプライバシーポリシーを読み、理解したものとみなされます。
Licensed under cc by-sa 3.0 with attribution required.