摘要:
Hadoop的思想来源于Google的几篇论文,Google的那篇MapReduce论文里说:Our abstraction is inspired by the map and reduce primitives present in Lisp and many other functional 阅读全文
摘要:
收获: 1.在python中对链表中节点进行操作时: a) 从前 我直接 return head (错误) b)现在由于怕 head 会被修改,所以要设 point = Listnode(-1) return point 2. 我自己只想出了两遍遍历,收获了一遍遍历的思路: 双指针 a) 使 fas 阅读全文