Coder Social home page Coder Social logo

convexhull's People

Stargazers

 avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar

Watchers

 avatar  avatar

convexhull's Issues

infinite loop (jarvis)

the following test fails for the Jarvis Match, while it run ok for the Grahams
all point coordinates are in the range of Int.MaxValue

static void Main(string[] args)
        {
            var listPoints = new List<Point>();
            listPoints.Add(new Point(0, 472420000));
            listPoints.Add(new Point(125490000, 1542750000));
            listPoints.Add(new Point(701250000, 974370000));
            listPoints.Add(new Point(1151530000, 575760000));
            listPoints.Add(new Point(1446790000, 0));
            listPoints.Add(new Point(1564899999, 1719899999));
            listPoints.Add(new Point(1933980000, 435510000));            

            // int.MaxValue = 2147483647

            {
                GrahamScan gs = new GrahamScan();

                var stopwatch = new Stopwatch();
                stopwatch.Start();
                gs.convexHull(listPoints);
                stopwatch.Stop();
                float elapsed_time = stopwatch.ElapsedMilliseconds;
                Console.WriteLine("Elapsed time: {0} milliseconds", elapsed_time);
                Console.WriteLine("Press enter to close...");
                Console.ReadLine();
            }

            {
                JarvisMatch jm = new JarvisMatch();

                var stopwatch = new Stopwatch();
                stopwatch.Start();
                jm.convexHull(listPoints);
                stopwatch.Stop();
                float elapsed_time = stopwatch.ElapsedMilliseconds;
                Console.WriteLine("Elapsed time: {0} milliseconds", elapsed_time);
                Console.WriteLine("Press enter to close...");
                Console.ReadLine();
            }
        }

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.