advanced-algorithms icon indicating copy to clipboard operation
advanced-algorithms copied to clipboard

100+ algorithms & data structures generically implemented in C#

Results 4 advanced-algorithms issues
Sort by recently updated
recently updated
newest added

https://en.wikipedia.org/wiki/Edmonds%27_algorithm implementation is missing. It would be great to have it altogether with other graph-related stuff.

new-algorithm-request

if (current.Point.X == point.X && current.Point.Y == point.Y) return current;

Hi, the Bentley-Ottmann algorithm implementation seems to fail to detect all intersection points. ``` var lines = new List() { new Line(new Point(0.307769600445297, 0.496908523373729), new Point(0.752325133305194, 0.247345594804429)), new Line(new Point(0.59643911784349,...