Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

update breadthfirstsearch.py #3

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 3 additions & 5 deletions Hanoi/BreadthFirstSearch.py
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
from collections import deque
from decimal import Decimal
from collections import deque #import deque functionality frome collections libarary.
from decimal import Decimal ##import Decimal functionality frome decimal libarary.
_inf = Decimal('infinity')

class BreadthFirstSearch(object):
class BreadthFirstSearch(object): #Base class create of BreadthFirstSearch.
def __init__(self, G, source):
self._q = deque()
self._marked = [ False for i in range(G.V()) ]
Expand Down Expand Up @@ -35,10 +35,8 @@ def _bfs(self, G, source):

def hasPathTo(self, v):
return self._marked[v]

def distTo(self, v):
return self._distTo[v]

def pathTo(self, v):
"returns path from source to v"
if not self.hasPathTo(v): return None
Expand Down