Skip to content

Instantly share code, notes, and snippets.

@sakex
Created February 12, 2018 17:59
Show Gist options
  • Save sakex/68eae7616ce2317dae1cc06247b1baf9 to your computer and use it in GitHub Desktop.
Save sakex/68eae7616ce2317dae1cc06247b1baf9 to your computer and use it in GitHub Desktop.
class Node:
def __init__(self, name, parent):
self.name = name
self.parent = parent
self.children = {}
def addChild(self, childname, weight):
child = Node(childname, self)
self.children[childname] = {
"node": child,
"weight": weight
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment