Git Product home page Git Product logo

Comments (7)

orangeduck avatar orangeduck commented on July 18, 2024

Yes currently the Map data structure doesn't self balance. Sorry this is an improvement that really needs to be made which I've not found time to add as I've been very busy at my main job.

The good news is that I'm actually currently in the middle of a large revamp of Cello, which includes improving all of the data structures to remove the obvious problems like these and try to make them state-of-the-art. If you can wait a few months this may be ready then, otherwise I welcome pull requests.

Thanks

from cello.

zhangchn avatar zhangchn commented on July 18, 2024

The problem is not really about balancing. It is about that binary search in the tree may fail when it should not.

from cello.

orangeduck avatar orangeduck commented on July 18, 2024

Do you have an example of it failing I could use to debug?

from cello.

zhangchn avatar zhangchn commented on July 18, 2024

I have tried to replace Map's implementation using BSD API rb_tree_*.
Even after that I still got absurd exceptions in Map_Get(), and it turned out that something was seriously wrong in String_Lt().

In my case, String_Lt() tells rb_tree_find_node() that $(String, "od") < $(String, "oed"), and that $(String, "sd") < $(String, "oed"), etc.!

After replacing the comparison in String_Lt() with strncmp() < 0 ? True : False, it went smoothly.

from cello.

orangeduck avatar orangeduck commented on July 18, 2024

Thanks for checking this out. Don't know why I tried to write my own broken implementation of comparing strings. Must have been a moment of insanity! I'll fix that and just use strncmp instead.

from cello.

zhangchn avatar zhangchn commented on July 18, 2024

It seems my naive rb_tree implementation for Map works but it does break a test case, where the order of keys are required.

from cello.

orangeduck avatar orangeduck commented on July 18, 2024

Actually I think that test case is wrong along with the implementation - and that the new string comparison function is right. I changed it in the latests commits.

from cello.

Related Issues (20)

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.