页面顶部 Top
文件:  root - text - article - 2019 - 11 - intersection-of-linked-lists.txt
标签: 每日算法题, 算法, 数据结构, 面试题, Daily Interview Problem, Data Structures and Algorithms, Computer Programming, | 英文 | 主页 | 类别: 计算机科学 | 172 次阅读, 15511 次搜索 | 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, | 英文 | 主页 | 类别: 计算机科学 | 172 次阅读, 15511 次搜索 | 136 个单词 定阅此目录的博客

猜您喜欢...

  1. [Daily Problem] Course Prerequisites
  2. [Daily Problem] Longest Increasing Subsequence
  3. Daily Interview Question: Create a Simple Calculator
  4. Daily Interview Problem: Reverse Integer
  5. [Daily Problem] Move Zeros
  6. How to Play WAV music under DOS?
  7. Daily Interview Problem: Sort Colors
  8. Daily Interview Problem: Contiguous Subarray with Maximum Sum
  9. Fibonacci coding
  10. Daily Interview Problem: Merge K Sorted Linked Lists

评论 (0)

    当前页暂时没有评论。


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