页面顶部 Top
文件:  root - text - article - 2019 - 11 - intersection-of-linked-lists.txt
标签: 每日算法题, 算法, 数据结构, 面试题, Daily Interview Problem, Data Structures and Algorithms, Computer Programming, | 英文 | 主页 | 类别: 计算机科学 | 174 次阅读, 16209 次搜索 | 136 个单词

定阅此目录的博客 | 浏览 | 博客存档
Hi, here's your problem today. This problem was recently asked by Apple:

You are given two singly linked lists. The lists intersect at some node. Find, and return the node. Note: the lists are non-cyclical.

Example:


A = 1 -> 2 -> 3 -> 4
B = 6 -> 3 -> 4


This should return 3 (you may assume that any nodes with the same value are the same node).

Here is a starting point:


def intersection(a, b):
# fill this in.

class Node(object):
def __init__(self, val):
self.val = val
self.next = None
def prettyPrint(self):
c = self
while c:
print c.val,
c = c.next

a = Node(1)
a.next = Node(2)
a.next.next = Node(3)
a.next.next.next = Node(4)

b = Node(6)
b.next = a.next.next

c = intersection(a, b)
c.prettyPrint()
# 3 4
标签: 每日算法题, 算法, 数据结构, 面试题, Daily Interview Problem, Data Structures and Algorithms, Computer Programming, | 英文 | 主页 | 类别: 计算机科学 | 174 次阅读, 16209 次搜索 | 136 个单词 定阅此目录的博客

猜您喜欢...

  1. Daily Interview Problem: Given two arrays, write a function to compute their intersection.
  2. CPU Utilization
  3. Linode Support Ticket 10029540 - Other - Important Notice Regarding Ubuntu 17.10 Image
  4. Daily Interview Problem: Get all Values at a Certain Height in a Binary Tree
  5. Reverse a Directed Graph
  6. Daily Interview Question: Longest Sequence with Two Unique Numbers
  7. Daily Interview Problem: Count Number of Unival Subtrees
  8. Spectrum Master
  9. Daily Interview Problem: Full Binary Tree
  10. Daily Interview Problem: Min Stack

评论 (0)

    当前页暂时没有评论。


最后更新: October 30 2020 14:21:12 | RSS Subscription
牛排怎么做才好吃? | <meta name="机器人" content="索引, 跟踪">