我试图将位置列表中的所有唯一坐标添加到一个HashMap中,该HashMap以坐标为键,计数为值。关键字是由'$'符号连接的经度和纬度。
//String = coordinates concatinated with '$', Integer = coordinate occurrence count
private HashMap<String, Integer> coordMap = new HashMap<String, Integer>();
...
public void addCoords(double longitude, double latitude) {
//The total count of the state
stateCount++;
String coordsConcat = longitude + "$" + latitude;
//Here we're removing the entry of the existing coord, then re-adding it incremented by one.
if (coordMap.containsKey(coordsConcat)) {
Integer tempCount = coordMap.get(coordsConcat);
tempCount = tempCount + 1;
coordMap.remove(coordsConcat);
coordMap.put(coordsConcat, tempCount);
} else {
coordMap.put(coordsConcat, 1);
}
}
我遇到的问题是containsKey总是返回false,即使通过测试我输入了两个相同的经纬度坐标。
编辑:我尝试了addCords(0,0);
5次,HashMap仍然是空的。
编辑2:双精度值只能到千分位。
测试用例:GeoState test = new GeoState("MA");
test.addCoords(0,0);
test.addCoords(0,0);
test.addCoords(0,0);
test.addCoords(0,0);
System.out.println(test.getRegionCoords());
这将返回{}
由于
这很可能是精度问题。您可能希望在将coordconcat放入HashMap之前,在将其放入HashMap之后以及在检查containsKey之前检查它们的值。