私は、dbからjavaオブジェクトのリストを取得し、それを既に検索された古いリストと比較し、その中のdelta(difference)要素を見つけて返すプログラムを持っています。 SetメソッドUnion()、Intersection()などを使用するだけでなく、メモリ不足を回避するよりも、これを行う最良の方法があるのだろうかと思いますか? リストのサイズは200kにすることができます。 私のプロジェクトでSpring 3.2.8.RELEASEのバージョンを使用しています。Javaで2つのリストを比較する効率的な方法は何ですか?
public class Tester {
private List<AddressInfo> oldListOfAddresses;
@Scheduled(cron="0 1 6 * * ?") // 6 AM everyday
public Map<String, AddressInfo> getCompany() {
try {
Map<String, AddressInfo> companyMap = new HashMap<>();
String sql = "Some sql query which return Address Info.";
List<AddressInfo> newListOfAddresses = jdbcTemplate.query(sql, new Object[0],
new FacilityNewMapper());
if (newListOfAddresses == null || newListOfAddresses.size() = 0) {
throw new FacilityLookUpException("List of clinic Info from facilities is empty...");
} else {
// I have to find the delta of new list and old list here.
// I need an efficient (Space and Time) way of finding delta.
List<AddressInfo> deltaList = newListOfAddresses - oldListOfAddresses; //Something like this
for (AddressInfo comp : deltaList) {
if (comp != null) {
companyMap.put(comp.getLocationId(), comp);
}
}
oldListOfAddresses = newListOfAddresses;
}
return companyMap;
} catch (Exception e) {
throw new CompanyLookUpException(
"List of company addresses is empty..." + e.getMessage());
}
}
}
AddressInfo bean。
public class AddressInfo{
private String locationId;
private String streetName;
private String city;
private String state;
private String country;
public String getLocationId() {
return locationId;
}
public void setLocationId(String locationId) {
this.locationId = locationId;
}
public String getStreetName() {
return streetName;
}
public void setStreetName(String streetName) {
this.streetName = streetName;
}
public String getCity() {
return city;
}
public void setCity(String city) {
this.city = city;
}
public String getState() {
return state;
}
public void setState(String state) {
this.state = state;
}
public String getCountry() {
return country;
}
public void setCountry(String country) {
this.country = country;
}
@Override
public int hashCode() {
final int prime = 31;
int result = 1;
result = prime * result + ((city == null) ? 0 : city.hashCode());
result = prime * result + ((country == null) ? 0 : country.hashCode());
result = prime * result + ((locationId == null) ? 0 : locationId.hashCode());
result = prime * result + ((state == null) ? 0 : state.hashCode());
result = prime * result + ((streetName == null) ? 0 : streetName.hashCode());
return result;
}
@Override
public boolean equals(Object obj) {
if (this == obj)
return true;
if (obj == null)
return false;
if (getClass() != obj.getClass())
return false;
AddressInfo other = (AddressInfo) obj;
if (city == null) {
if (other.city != null)
return false;
} else if (!city.equals(other.city))
return false;
if (country == null) {
if (other.country != null)
return false;
} else if (!country.equals(other.country))
return false;
if (locationId == null) {
if (other.locationId != null)
return false;
} else if (!locationId.equals(other.locationId))
return false;
if (state == null) {
if (other.state != null)
return false;
} else if (!state.equals(other.state))
return false;
if (streetName == null) {
if (other.streetName != null)
return false;
} else if (!streetName.equals(other.streetName))
return false;
return true;
}
}
いうだけの設定方法に連合()、交差点()などを使用して、メモリ不足エラーが回避よりも、これを行うための最善の方法があるかどうか、私は疑問に思って*教えてください* – nullpointer
ない「最善はありません"方法。多くの要因(リストのサイズ、リストを取得するのにかかる時間、比較を実行する回数など)によって、さまざまなシナリオで非常に良い方法があります。 – biziclop
あなたの質問は不完全です。 2つのリストを「比較」する意味と、「デルタ」が意味することを指定していません。最も重要なのは、 'AddressInfo'クラスが' equals() 'メソッドを定義していないことに注意してください。つまり、このクラスの2つのオブジェクトを有意義に比較することはできないため、原則としてあなたが求めていることを行うことはできません。あなたが 'equals()'を提供すると仮定すると、問題は、リストに(equals()に基づいて)重複を含めることができるかどうかです。比較の際に要素の順序が重要かどうかを教えてください。 –