摘要: 1.基础算术运算 1.1比较两数是否相等 res = log(640320**3+744, base=exp(1))/sqrt(163)identical(res,pi) 1.2对数函数 log(x, base = exp(1))log10(x)log2(x) 2.内置数据结构 2.1Vecteur 阅读全文
posted @ 2021-10-06 05:20 Houze 阅读(143) 评论(0) 推荐(0)
摘要: 2021-10-04 22:53:45 在写泛型链表类的方法实现的时候,需要对泛型进行大小比较,如何实现? public K minVal() { if (this.head == null){ return null; } Node<K> node = this.head; K min = nod 阅读全文
posted @ 2021-10-05 05:14 Houze 阅读(1157) 评论(0) 推荐(0)