2018年3月11日

数据类型注意事项

摘要: 一。浮点数不能直接用来比较 1.不能用== 可以相减后比较绝对值 Math.abs()<1E-102.将除法转换成乘法运算。3.浮点数在计算时一般表示 有理数:分子/分母4.System.out.printf(1.0/6);有损失的方案无损失方案:a/b + c/d = (ad+cb)/bd5.求最 阅读全文

posted @ 2018-03-11 10:58 qzb!!! 阅读(156) 评论(0) 推荐(0) 编辑

二叉树的应用

摘要: 二叉树的基本排序 class BiTree{ BiTree l; BiTree r; int v; public BiTree(int v){ this.v = v; } public void add(BiTree the){ if(the.v<v){ if(l==null) l = the; e 阅读全文

posted @ 2018-03-11 10:01 qzb!!! 阅读(312) 评论(0) 推荐(0) 编辑

导航