极客大学架构师训练营 0 期 week 08 作业
作业1
题目描述:
https://leetcode-cn.com/problems/liang-ge-lian-biao-de-di-yi-ge-gong-gong-jie-dian-lcof/
代码:
作业2
请画出 DataNode 服务器节点宕机的时候,HDFS 的处理过程时序图。
题目描述:
https://leetcode-cn.com/problems/liang-ge-lian-biao-de-di-yi-ge-gong-gong-jie-dian-lcof/
代码:
/** * Definition for singly-linked list. * public class ListNode { * int val; * ListNode next; * ListNode(int x) { * val = x; * next = null; * } * } */public class Solution { public ListNode getIntersectionNode(ListNode headA, ListNode headB){ ListNode first = headA, second = headB; while(headA != headB){ if(headA == null) headA = second; else headA = headA.next; if(headB == null) headB = first; else headB = headB.next; } if(headA == null) return null; return headA; }}
请画出 DataNode 服务器节点宕机的时候,HDFS 的处理过程时序图。
还未添加个人签名 2018.03.09 加入
还未添加个人简介
促进软件开发及相关领域知识与创新的传播
评论