forked from AdaGold/Bipartition-Graph
-
Notifications
You must be signed in to change notification settings - Fork 16
Shubha 🧙♀️ #9
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
Open
shubha-rajan
wants to merge
8
commits into
Ada-C11:master
Choose a base branch
from
shubha-rajan:master
base: master
Could not load branches
Branch not found: {{ refName }}
Loading
Could not load tags
Nothing to show
Loading
Are you sure you want to change the base?
Some commits from the old base branch may be removed from the timeline,
and old review comments may become outdated.
Open
Shubha 🧙♀️ #9
Changes from all commits
Commits
Show all changes
8 commits
Select commit
Hold shift + click to select a range
e5a659c
solved with bfs approach
shubha-rajan bd0edd6
formatting
shubha-rajan b11e762
cited resources used
shubha-rajan 99f9491
handles graph where all nodes aren't interconnected
shubha-rajan 2a014fd
handles graph where all nodes aren't interconnected
shubha-rajan 8b4b249
remove pry
shubha-rajan f42560b
fixed failing test
shubha-rajan 1232714
Update possible_bipartition.rb
shubha-rajan File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,48 @@ | ||
# I looked at the leetcode solution in Python | ||
# (https://leetcode.com/problems/possible-bipartition/solution/) | ||
# to get an idea of how to turn the list of dislikes into a graph, | ||
# but chose to implement a breadth-first solution instead | ||
|
||
def possible_bipartition(dislikes) | ||
raise NotImplementedError, "possible_bipartition isn't implemented yet" | ||
return true if dislikes.empty? | ||
graph = build_graph(dislikes) | ||
# start with an arbitrary node of the graph, | ||
# assuming all nodes have at least one edge | ||
grouped = {graph.keys[0] => true} | ||
queue = [graph.keys[0]] | ||
# using a bfs approach, set all neighbor nodes to the opposite label | ||
# and add them to the queue if they haven't been visited | ||
# return false if a neighbor has the same label as the current node | ||
while !queue.empty? | ||
node = queue.shift() | ||
graph[node].each do |neighbor| | ||
if grouped[neighbor] == nil | ||
grouped[neighbor] = !grouped[node] | ||
queue.push(neighbor) | ||
elsif grouped[neighbor] == grouped[node] | ||
return false | ||
end | ||
end | ||
if queue.empty? | ||
graph.keys.each do |key| | ||
if grouped[key].nil? | ||
queue.push(key) | ||
break | ||
end | ||
end | ||
end | ||
end | ||
return true | ||
end | ||
|
||
|
||
def build_graph(dislikes) | ||
nodes = Hash.new {|h,k| h[k] = [] } #had to look up how to do this on StackOverflow | ||
dislikes.each do |dislike| | ||
dislike.each do |node| | ||
nodes[node] += dislike - [node] | ||
end | ||
end | ||
return nodes | ||
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
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Ok great, it's been a while since you saw graphs in class anyway.