- 博客(4)
- 收藏
- 关注
原创 Spark面试题整理(1)
Spark1. Spark VS MapReducespark是借鉴了Mapreduce,并在其基础上发展起来的,继承了其分布式计算的优点并进行了改进,spark生态更为丰富,功能更为强大,性能更加适用范围广,mapreduce更简单,稳定性好对性能的要求也相对较弱,适合长期后台运行。1. Spark基于内存计算,MR基于磁盘计算+容错性对比 2. Spark 多线程模型,MR多进程模型3. Spark比MR更灵活丰富(1) Spark内存计算VS MapReduce读写磁盘MapReduce:MapRe
2022-06-05 01:12:45 561
原创 剑指offer25 -- LeetCode #112 Path Sum
public class test25 { public boolean hasPathSum(TreeNode root, int sum) { if(root == null) return false; if(root.left == null && root.right == null && ...
2019-04-19 00:51:15 158
原创 剑指offer20,顺时针打印矩阵 -- LeetCode #54 spiralOrder
public class test20{ public List<Integer> spiralOrder(int[][] matrix) { List answer = new ArrayList(); if(matrix.length == 0) return answer; int rows = m...
2019-04-19 00:49:28 175
原创 剑指offer19,二叉树的镜像 -- LeetCode #226
public class test19{ public TreeNode invertTree(TreeNode root) { if(root == null) return root; if(root.left == null && root.right == null) return root; TreeNode temp = root.le...
2019-04-19 00:46:59 283
空空如也
空空如也
TA创建的收藏夹 TA关注的收藏夹
TA关注的人