页面顶部 Top
文件:  root - text - article - 2019 - 11 - Remove-Consecutive-Nodes-that-Sum-to-0.txt
标签: 每日算法题, 算法, 数据结构, 面试题, Daily Interview Problem, Data Structures and Algorithms, Computer Programming, Python, | 英文 | 主页 | 类别: 计算机科学 | 176 次阅读, 19094 次搜索 | 146 个单词

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

Given a linked list of integers, remove all consecutive nodes that sum up to 0.

Example:
Input: 10 -> 5 -> -3 -> -3 -> 1 -> 4 -> -4
Output: 10

The consecutive nodes 5 -> -3 -> -3 -> 1 sums up to 0 so that sequence should be removed. 4 -> -4 also sums up to 0 too so that sequence should also be removed.

Here's a starting point:


class Node:
def __init__(self, value, next=None):
self.value = value
self.next = next

def removeConsecutiveSumTo0(node):
# Fill this in.

node = Node(10)
node.next = Node(5)
node.next.next = Node(-3)
node.next.next.next = Node(-3)
node.next.next.next.next = Node(1)
node.next.next.next.next.next = Node(4)
node.next.next.next.next.next.next = Node(-4)
node = removeConsecutiveSumTo0(node)
while node:
print node.value,
node = node.next
# 10
标签: 每日算法题, 算法, 数据结构, 面试题, Daily Interview Problem, Data Structures and Algorithms, Computer Programming, Python, | 英文 | 主页 | 类别: 计算机科学 | 176 次阅读, 19094 次搜索 | 146 个单词 定阅此目录的博客

猜您喜欢...

  1. Reverse a Linked List
  2. [Daily Problem] Add two numbers as a linked list
  3. Daily Interview Question: Find Cycles in a Graph
  4. First and Last Indices of an Element in a Sorted Array
  5. Algorithm Interview: Maximum Path Sum in Binary Tree
  6. [Daily Problem] Remove Consecutive Nodes that Sum to 0
  7. Print a tree level-by-level, with line-breaks
  8. Multitasking
  9. Algorithm Interview: Convert Roman Numerals to Decimal
  10. Daily Interview Problem: Maximum Profit From Stocks

评论 (0)

    当前页暂时没有评论。


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