Giter VIP home page Giter VIP logo

arbitrage's Introduction

Bellman-Ford only detects presence of negative weight cycle,
not what that negative cycle is.

There's almost always a negative weight cycle, and in practice this
algorithm is useless, as indicated by the author of the blog post that 
inspired this code.

This is a solution to problem presented in the textbook "Introduction to 
Algorithms", by Cormen, Leiserson, Rivest, Stein,
in its chapter on the single-source shortest paths problem. To explain the
problem in terms of the Bellman-Ford algorithm, it is to:

- detect the existence of a negative weight cycle in the currency graph
- produce the path of any (not all) negative weight cycle in the graph

Negative weight cycle is determined by doing an extra relaxation step
after |V| - 1 relaxation steps.

After |V| - 1 relaxations, all paths from the source to each vertex are guaranteed
to be fixed, if there is no negative weight cycle. However, supposing
after |V| relaxations, the distance value for a vertex v has decreased,
then a negative weight cycle starts and ends at v.

Is there anything wrong with this logic?

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.