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

Whit - Paper #23

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
29 changes: 26 additions & 3 deletions graphs/possible_bipartition.py
Original file line number Diff line number Diff line change
Expand Up @@ -5,8 +5,31 @@ def possible_bipartition(dislikes):
""" Will return True or False if the given graph
can be bipartitioned without neighboring nodes put
into the same partition.
Time Complexity: ?
Space Complexity: ?
Time Complexity: O(n+e)
Space Complexity: O(n)
"""
Comment on lines 5 to 10

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

👍

pass
if len(dislikes) < 2:
return True

queue = deque([1])

groups = {}
groups[1] = 'X'
seen = set([1])

while len(queue) > 0:
current = queue.popleft()
group = groups[current]

for dislike in dislikes[current]:
if dislike in groups:
if groups[dislike] == group:
return False
else:
groups[dislike] = 'X' if group == 'O' else 'O'

if dislike not in seen:
queue.append(dislike)
seen.add(dislike)

return True