Given a family tree for a few generations for the entire population and two people, write a routine that will find out if they are blood related. Siblings are blood related since they have the same parents. Cousins are blood related since one of their parents have the same parents etc.
You have a genealogy: 1) Describe a data structure to represent it. 2) Given any two people within the genealogy, describe an algorithm to determine if they share a common ancestor. You just need to return true/false, not all ancestors.
即判断两个人在家族图谱中是否存在血缘关系。
给你两个人A和B,自己设计数据结构,判断他们是否有血缘关系。我的答案:一开始看不懂这题,紧张的要死,后来终于想到了,这不是二叉树嘛。设计两个TreeNode(int id, TreeNode left, TreeNode right),left和right是root节点的parents,判断A和B是否包含有id相同的节点。我给了俩个答案,第一个是递归,第二个用HashSet。都问了时间复杂度和空间复杂度。由于HashSet方法要遍历二叉树,我还介绍了下遍历二叉树的三种方法(Recursive, Iterative, Morris Traversal),面试官好像对Morris遍历比较感兴趣,让我简单讲了下。
public static class Person { Person[] parents; } // naming for cousins is: n th cousin m times removed // where n is the min generations to a common ancestor and m is the number of generations difference between the 2 cousins // so this is going to be O((2^n+m)+2) which is still more efficient than dfs assuming the num generations in the population is > n+m public boolean bloodRelated(Person p1, Person p2) { // simple search would go down p1's children/grandchildren/etc and see if we find p2 // then vice versa // then worry about cousin style relationships // here we'd go up the parent tree on both until we found a common node (or ran out of data) // we could take this last approach anyway and it would get us a parent-child match too Set<Person> p1Ancestors = new HashSet<Person>(); Set<Person> p2Ancestors = new HashSet<Person>(); // so ideally here we're going to do BFS, but we're going to do 2 at once to try to minimize the depth we have to go List<Person> p1Discovered = new LinkedList<Person>(); p1Discovered.add(p1); List<Person> p2Discovered = new LinkedList<Person>(); p2Discovered.add(p2); while (!p1Discovered.isEmpty() || !p2Discovered.isEmpty()) { Person nextP1 = p1Discovered.remove(0); if (nextP1 != null) { if (p2Ancestors.contains(nextP1)) { return true; } for (Person parent : nextP1.parents) { p1Discovered.add(parent); } p1Ancestors.add(nextP1); } Person nextP2 = p2Discovered.remove(0); if (nextP2 != null) { if (p1Ancestors.contains(nextP2)) { return true; } for (Person parent : nextP2.parents) { p2Discovered.add(parent); } p2Ancestors.add(nextP2); } } return false; }
Reference:
相关推荐
VUE 面试题汇合 vue-interview-questions-master VUE 面试题汇合 vue-interview-questions-master VUE 面试题汇合 vue-interview-questions-master VUE 面试题汇合 vue-interview-questions-master VUE 面试题...
【压缩包子文件的文件名称列表】: "interview-docs-master" 指出压缩包内有一个名为"interview-docs-master"的文件或目录。通常,这样的结构可能包含一个顶级目录,里面按照不同主题组织了各种文档,比如FAQs、面试...
123-Essential-JavaScript-Interview-Question, JavaScript访问问题 123 -JavaScript-Interview-Questions这本书将由 2018年06月 完成并可以供购买。 如果你想让我把这本书的早期拷贝,请在这里添加你的NAME 和电子...
本压缩包中的"coding-interview-university-master"目录,很可能是包含了一个逐步学习算法和数据结构的课程结构,这对于准备技术面试,尤其是硅谷流行的“编程面试”极其有价值。 学习算法,首先要理解基础的数据...
标题中的"Interview-code-practice-python-master_escapek5u_python_"暗示了这是一个关于Python编程的面试题练习项目,可能包含了各种常见的编程题目,旨在帮助开发者准备技术面试。"escapek5u"可能是创建或整理这个...
"Algorithm_for_Interview-Chinese-master.zip" 这个压缩包文件很可能包含了丰富的面试准备资料,聚焦于C++语言,涵盖了多种核心算法和概念。让我们深入探讨一下这些关键知识点。 1. **查找与排序**: - **查找...
Technical-Interview-Preparation-Checklist.pdf
这份名为"Interview-Materials.rar__interview_interview-q"的压缩包文件显然是为准备IT行业面试者精心准备的一份资源集合。它涵盖了C、C++以及Linux等多个关键领域的知识,帮助求职者一站式获取必要的面试准备材料...
DOCKER-INTERVIEW-QUESTIONS.pdf
"Java-Interview-超全集合github上评分最高的jiva面试题"就是一个这样的宝藏,它涵盖了Java编程语言、Git版本控制工具以及面试策略等多个方面的知识点。以下是这些内容的详细解析: 1. **Java基础** - **数据类型...
juejin-interview-软考-网络工程师资源
web-interview-软考-网络工程师资源
深度学习框架001 深度学习框架有哪些?002 介绍一下TensorFlow常用的Optimizer003 Caffe的depthwise为什么慢,怎么解决00
Awesome-algorithm-interview-计算机求职面经资源
115-Java-Interview-Questions-and-Answers, 115 Java访谈问题和答案- 终极列表 #115-Java-Interview-Questions-and-Answers我们将讨论关于Java面试中可以使用的各种问题,以便雇主在Java和面向对象编程方面测试你的...
daily-interview-计算机求职面经资源