Draw Quick Start
Description
Draw graphic representations of the following data structures. - Tree - Trie - Heap - Graph
- To visualize any class, follow these steps:
Import the Draw class for the data structure.
Create an instance of the data structure.
Initialize the Draw class with the data structure as the argument.
Call the draw() method of the Draw object.
Import Class
Import class
Import the class related to the data structure to be visualized.
from dsa.draw import TreeDraw
from dsa.draw import HeapDraw
from dsa.draw import TrieDraw
from dsa.draw import GraphDraw
Creation
Initialize the Draw class with the data structure as the argument.
# create Tree
t = Tree()
td = TreeDraw(t)
# create Heap
h = Heap()
hd = HeapDraw(h)
# create Trie
trie = Trie()
trd = TreeDraw(trie)
# create Graph
g = Graph()
gd = GraphDraw(g)
Draw the object by invoking the draw() method
td.draw()
hd.draw()
trd.draw()
gd.draw()
Use the TreeDraw class to draw a visual representation of a tree.
from dsa.draw import TreeDraw
t = Tree()
t.insert(20)
t.insert(10)
t.insert(30)
td = TreeDraw(t)
td.draw()
Example of a Tree structure using TreeDraw.
Use the HeapDraw class to draw a visual representation of a heap.
from dsa.draw import HeapDraw
h = Heap()
h.insert(1)
h.insert(2)
h.insert(3)
h.insert(4)
hd = HeapDraw(h)
hd.draw()
Example of a Heap structure using HeapDraw.
Use the TrieDraw class to draw a visual representation of a trie.
from dsa.draw import TrieDraw
t = Trie()
t.insert("cab")
t.insert("car")
t.insert("cut")
td = TrieDraw(t)
td.draw()
Example of a Trie structure using TrieDraw.
Use the GraphDraw class to draw a visual representation of a graph.
from dsa.draw import GraphDraw
g = Graph.create_adjacency_matrix(directed=True, weighted=True)
g.add_edge("A", "B", 1)
g.add_edge("A", "C", 2)
g.add_edge("B", "C", 3)
# accepts any graph type
gd = GraphDraw(g)
gd.draw()
Example of a Graph structure using GraphDraw.