# 5. Binary Search

## 使用binarySearch必須指定Comparator

`Collection.binarySearch(Object, target, CompGPA)`

```java
private static Comparator<student> compGPA = new Comparator<student>(){
  public int compare(student s1, student s2){
};
```

##
