-
-
Notifications
You must be signed in to change notification settings - Fork 7.4k
Made changes to the efficient bridge-finding algorithm #92
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
Conversation
Added server.py so I could run this on localhost
oops
Description of the efficient bridges algorithm
…alizer into gh-pages # Conflicts: # index.html
-Added a description of the efficient algorithm -Eliminated the visited and parent array, more space efficient to use -1 to indicate something not visited. Only parent of current node is needed.
…h-pages # Conflicts: # index.html
Forgot the semicolon oops
There are extra files and conflicts weren't dealt with. Please send another pr after just making fixes around the bridge finding algorithm. |
I only changed things around the bridge finding algorithm. I did periodically update from the parkjs814 gh-pages branch, and when I send in the pr it has hundreds of file having no changes except for the "File mode changed". How should I get rid of that? |
Hi @fclvbfm934, a few suggestions:
|
Hi, Regarding the file modes, I tried typing that into the shell and the pull request still has the file mode changes. I'm kind of new to using GitHub so I'm not quite sure what to do. (sorry if this is a dumb question). I'm using the GitHub Desktop application, so what should I do to get rid of this file mode change? |
Ignore the server.py file, that was just so I could run it on localhost.
I made some changes to the efficient bridge-finding algorithm (the non-naive one):