24

オブジェクトを使用して ArrayList にバイナリ検索を実装する方法はありますか? この例では、ArrayList はフィールド「id」でソートされます。

class User{
 public int id;
 public string name;
}

ArrayList<User> users = new ArrayList<User>();

sortById(users);

int id = 66
User searchuser = getUserById(users,id);

「User getUserById( ArrayList users, int userid )」は、バイナリ検索を使用して指定された ID を持つユーザーを返す必要がある場合、どのように見えますか? これは可能ですか?

4

5 に答える 5

55

The Java Tutorials のObject OrderingComparatorの記事には、カスタム型の比較を実行するために独自に記述した例があります。

次に、ArrayList(またはその他のList)、検索するキーをメソッドComparatorに渡すことができます。Collections.binarySearch

次に例を示します。

import java.util.*;

class BinarySearchWithComparator
{
  public static void main(String[] args)
  {
    // Please scroll down to see 'User' class implementation.
    List<User> l = new ArrayList<User>();
    l.add(new User(10, "A"));
    l.add(new User(20, "B"));
    l.add(new User(30, "C"));

    Comparator<User> c = new Comparator<User>() {
      public int compare(User u1, User u2) {
        return u1.getId().compareTo(u2.getId());
      }
    };

    // Must pass in an object of type 'User' as the key.
    // The key is an 'User' with the 'id' which is been searched for.
    // The 'name' field is not used in the comparison for the binary search,
    // so it can be a dummy value -- here it is omitted with a null.
    //
    // Also note that the List must be sorted before running binarySearch,
    // in this case, the list is already sorted.

    int index = Collections.binarySearch(l, new User(20, null), c);
    System.out.println(index);    // Output: 1

    index = Collections.binarySearch(l, new User(10, null), c);
    System.out.println(index);    // Output: 0

    index = Collections.binarySearch(l, new User(42, null), c);
    System.out.println(index);    // Output: -4
                                  // See javadoc for meaning of return value.
  }
}

class User {
  private int id;
  private String name;

  public User(int id, String name) {
    this.id = id;
    this.name = name;
  }

  public Integer getId() {
    return Integer.valueOf(id);
  }
}
于 2009-05-23T17:15:45.817 に答える
7

コンパレーターを User クラスに入れることもできます。

public class User implements Comparable<User>, Comparator<User>
{
  public User(int id, String name)
  {
    this.id = id;
    this.name = name;
  }
  @Override
  public int compareTo(User u)
  {
    return id - u.getID();
  }
  @Override
  public int compare(User u1, User u2)
  {
    return u1.getID() - u2.getID();
  }

  public int getID() { return id; }
  public String getName() { return name; }
  private int id;
  private String name;
}

次に、users という名前の ArrayList に対して次の操作を行います。

ArrayList<User> users = new ArrayList<User>();
users.add(new User(3, "Fred"));
users.add(new User(42, "Joe"));
users.add(new User(5, "Mary"));
users.add(new User(17, "Alice"));

Collections.sort(users);
int index = Collections.binarySearch(users, new User(5, null));
if(index >= 0)
  System.out.println("The user name of id 5 is: "+users.get(index).getName());
else
  System.out.println("ID 5 is not in the list");
于 2012-09-18T10:02:20.513 に答える
6

とともに使用Collections.binarySearchComparatorます。

于 2009-05-23T17:13:19.877 に答える
3
import java.util.Collections;
Collections.binarySearch(users, id);
于 2009-05-23T17:14:33.883 に答える
1

ソートされた ArrayList でのみ binarySearch メソッドを使用する必要があります。最初に ArraList をソートし、(ソートに使用した) 同じコンパレータ参照を使用して binarySearch 操作を実行します。

于 2012-04-16T21:34:45.253 に答える