Created
March 20, 2013 16:31
-
-
Save davidrichards/5206092 to your computer and use it in GitHub Desktop.
A quick adjacency list demo for a gantt chart.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Edge = Struct.new(:parent, :child, :attributes) | |
class AdjacencyList | |
include Enumerable | |
attr_reader :list | |
attr_accessor :nodes | |
def initialize | |
@list = [] | |
@nodes = [] | |
end | |
def each | |
@list.each {|e| yield e} | |
end | |
def add(parent, child, attributes=nil) | |
edge = Edge.new(parent, child, attributes) | |
add_edge(edge) | |
end | |
def remove(parent, child, attributes=nil) | |
edge = Edge.new(parent, child, attributes) | |
remove_edge(edge) | |
end | |
def add_edge(edge) | |
list << edge | |
self.nodes |= [edge.parent, edge.child] | |
true | |
end | |
# FIXME: conditionally prune the node list or don't remove edges | |
def remove_edge | |
list.delete(edge) | |
end | |
def find_parents(node) | |
select {|e| e.child == node}.map {|e| e.parent } | |
end | |
def find_children(node) | |
select {|e| e.parent == node}.map {|e| e.child } | |
end | |
# Use this to assemble a Gantt Chart | |
def dfs(node) | |
on_deck = find_children(node) | |
output = [node] | |
until on_deck.empty? | |
node = on_deck.shift | |
on_deck.unshift(*find_children(node)) | |
output << node | |
end | |
output | |
end | |
def inspect | |
"Adjacency List (#{nodes.size} nodes)" | |
end | |
end |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
a = AdjacencyList.new # => Adjacency List (0 nodes) | |
a.add :a, :b # => true | |
a.add :a, :c # => true | |
a.add :b, :d # => true | |
a # => Adjacency List (4 nodes) | |
a.dfs :a # => [:a, :b, :d, :c] |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment