為什么不建議你使用實數(shù)作為 HashMap 的key?
閱讀本文大概需要 5 分鐘。
來自:blog.csdn.net/qq_30219017/article/details/79689492
1.起因
Given n points on a 2D plane, find the maximum number of points that lie on the same straight line.
import?java.util.HashMap;
import?java.util.Map;
//class?Point?{
//????int?x;
//????int?y;
//????Point(int?a,?int?b)?{?x?=?a;?y?=?b;?}
//}
public?class?Solution?{
????public?int?maxPoints(Point[]?points)?{
????????if?(points.length?<=?2)?{
????????????return?points.length;
????????}
????????int?max?=?2;
????????for?(int?i?=?0;?i?1;?i++)?{
????????????Map?map?=?new?HashMap<>(16);
????????????//?記錄垂直點數(shù);?當前和Points[i]在一條線上的最大點數(shù);?和Points[i]垂直的點數(shù)
????????????int?ver?=?0,?cur,?dup?=?0;
????????????for?(int?j?=?i?+?1;?j?????????????????if?(points[j].x?==?points[i].x)?{
????????????????????if?(points[j].y?!=?points[i].y)?{
????????????????????????ver++;
????????????????????}?else?{
????????????????????????dup++;
????????????????????}
????????????????}?else?{
????????????????????float?d?=?(float)((points[j].y?-?points[i].y)?/?(double)?(points[j].x?-?points[i].x));
????????????????????map.put(d,?map.get(d)?==?null???1?:?map.get(d)?+?1);
????????????????}
????????????}
????????????cur?=?ver;
????????????for?(int?v?:?map.values())?{
????????????????cur?=?Math.max(v,?cur);
????????????}
????????????max?=?Math.max(max,?cur?+?dup?+?1);
????????}
????????return?max;
????}
}
public?static?void?main(String[]?args)?{
????int[][]?vals?=?{{2,3},{3,3},{-5,3}};
????Point[]?points?=?new?Point[3];
????for?(int?i=0;?i????????points[i]?=?new?Point(vals[i][0],?vals[i][1]);
????}
????Solution?solution?=?new?Solution();
????System.out.println(solution.maxPoints(points));
}
System.out.println(0.0?==?-0.0);
map.put(d,?map.get(d)?==?null???1?:?map.get(d)?+?1);
map.get()很有問題, 它的源代碼是這樣的:public?V?get(Object?key)?{
????Node?e;
????return?(e?=?getNode(hash(key),?key))?==?null???null?:?e.value;
}
hash()是吧,那我找到了它的hash函數(shù):static?final?int?hash(Object?key)?{
????int?h;
????return?(key?==?null)???0?:?(h?=?key.hashCode())?^?(h?>>>?16);
}
hashCode()函數(shù)public?native?int?hashCode();
????public?static?void?main(String[]?args)?{
????????System.out.println(0.0?==?-0.0);
????????System.out.println(new?Float(0.0).hashCode()?==?
????????????new?Float(-0.0).hashCode());
????}
2.實數(shù)的hashCode()
在程序執(zhí)行期間,只要equals方法的比較操作用到的信息沒有被修改,那么對這同一個對象調用多次,hashCode方法必須始終如一地返回同一個整數(shù)。
如果兩個對象根據(jù)equals方法比較是相等的,那么調用兩個對象的hashCode方法必須返回相同的整數(shù)結果。
如果兩個對象根據(jù)equals方法比較是不等的,則hashCode方法不一定得返回不同的整數(shù)?!秂ffective java》
System.out.println(new?Float(0.0).equals(0.0f));
System.out.println(new?Float(0.0).equals((float)?-0.0));
輸出是True 和 False
equals()?方法不相等,看來是滿足了書里說的邏輯的public?boolean?equals(Object?obj)?{
????return?(obj?instanceof?Float)
???????????&&?(floatToIntBits(((Float)obj).value)?==?
???????????????????floatToIntBits(value));
}
????/**
?????*?Returns?a?representation?of?the?specified?floating-point?value
?????*?according?to?the?IEEE?754?floating-point?"single?format"?bit
?????*?layout.
?????*
?????*?Bit?31?(the?bit?that?is?selected?by?the?mask
?????*?{@code?0x80000000})?represents?the?sign?of?the?floating-point
?????*?number.
?????*?Bits?30-23?(the?bits?that?are?selected?by?the?mask
?????*?{@code?0x7f800000})?represent?the?exponent.
?????*?Bits?22-0?(the?bits?that?are?selected?by?the?mask
?????*?{@code?0x007fffff})?represent?the?significand?(sometimes?called
?????*?the?mantissa)?of?the?floating-point?number.
?????*
?????*?If?the?argument?is?positive?infinity,?the?result?is
?????*?{@code?0x7f800000}.
?????*
?????*?If?the?argument?is?negative?infinity,?the?result?is
?????*?{@code?0xff800000}.
?????*
?????*?If?the?argument?is?NaN,?the?result?is?{@code?0x7fc00000}.
?????*
?????*?In?all?cases,?the?result?is?an?integer?that,?when?given?to?the
?????*?{@link?#intBitsToFloat(int)}?method,?will?produce?a?floating-point
?????*?value?the?same?as?the?argument?to?{@code?floatToIntBits}
?????*?(except?all?NaN?values?are?collapsed?to?a?single
?????*?"canonical"?NaN?value).
?????*
?????*?@param???value???a?floating-point?number.
?????*?@return?the?bits?that?represent?the?floating-point?number.
?????*/
????public?static?int?floatToIntBits(float?value)?{
????????int?result?=?floatToRawIntBits(value);
????????//?Check?for?NaN?based?on?values?of?bit?fields,?maximum
????????//?exponent?and?nonzero?significand.
????????if?(((result?&?FloatConsts.EXP_BIT_MASK)?==
??????????????FloatConsts.EXP_BIT_MASK)?&&
?????????????(result?&?FloatConsts.SIGNIF_BIT_MASK)?!=?0)
????????????result?=?0x7fc00000;
????????return?result;
????}
當浮點運算產生一個非常接近0的負浮點數(shù)時,會產生“-0.0”,而這個浮點數(shù)不能正常表示
System.out.println(Float.floatToIntBits((float)?0.0));
System.out.println(Float.floatToIntBits((float)?-0.0));
System.out.println(Float.floatToRawIntBits(0.0f));
System.out.println(Float.floatToRawIntBits((float)-0.0));
0
-2147483648
0
-2147483648
0x80000000Integer.MIN_VALUE推薦閱讀:
MyBatis批量插入幾千條數(shù)據(jù),請慎用foreach!??!
SpringBoot靜態(tài)獲取 bean的三種方式,你學會了嗎?
最近面試BAT,整理一份面試資料《Java面試BATJ通關手冊》,覆蓋了Java核心技術、JVM、Java并發(fā)、SSM、微服務、數(shù)據(jù)庫、數(shù)據(jù)結構等等。
朕已閱?

