Giter VIP home page Giter VIP logo

Comments (5)

ArturFormella avatar ArturFormella commented on July 27, 2024 1

Is there any beter way to unserialize? It has complexity O(N*logN) (I hope not worse...)

for (i = 0; i<size; i++) {
  int32 key = readNextKeyFrom(serialized)
  int32 value = readNextValueFrom(serialized)
  hashMap *s = (hashMap*)malloc(sizeof(hashMap));
  if(s == NULL){
     elog(ERROR, "malloc error!"); 
  }else{
    s->value = value;
    s->id = key;
    HASH_ADD_INT( hashmap, id, s );
  }
}

Serialized keys are sorted. Is it possible to do it with O(N)?
(N = number of serialized keys)

from uthash.

tbeu avatar tbeu commented on July 27, 2024

@troydhanson also created a serialization library https://github.com/troydhanson/tpl, which could do it.

from uthash.

Quuxplusone avatar Quuxplusone commented on July 27, 2024

I don't know any way of serializing a uthash hash other than the obvious

myserializer_serialize_beginhashtable();
HASH_ITER(myhash, cur, tmp) {
    myserializer_serialize_item(cur);
}
myserializer_serialize_endhashtable();

How to serialize each item in the hash is of course up to you; an item is just a C struct (which might contain pointers or even weirder unserializable data), so it's always going to be up to you to figure out how to serialize it correctly.

from uthash.

tbeu avatar tbeu commented on July 27, 2024

Issue troydhanson/tpl#12 is a similar one.

from uthash.

Quuxplusone avatar Quuxplusone commented on July 27, 2024

Coming by six years later to say... 😛 The complexity of the code in your last comment should be O(N), since you're just doing the loop N times, and inside the loop all you're doing is malloc'ing a new item (O(1), slow) and adding it into the hash (O(1), fast). There shouldn't be any log-N operations happening in there.

from uthash.

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.