CodeGuru Home VC++ / MFC / C++ .NET / C# Visual Basic VB Forums Developer.com

Search:

Type: Posts; User: muster

Search: Search took 0.04 seconds.

  1. Thread: B plus tree

    by muster
    Replies
    3
    Views
    3,154

    Re: B plus tree

    i tried wikipedia but didn't continue the document to the end, i need something that is more specific to BTree of file storage that works on filestream.
  2. Thread: B plus tree

    by muster
    Replies
    3
    Views
    3,154

    B plus tree

    Hey all. Can you give me a link that will help me in learning and making a BPlus tree so i can store several files in a single file.
  3. Thread: binary data

    by muster
    Replies
    3
    Views
    712

    Re: binary data

    good and tnx for the replies. But there is something that concerns me. I edited the code more like removed \0 since it was for testing purpose and used malloc in writing data in the class...
  4. Thread: binary data

    by muster
    Replies
    3
    Views
    712

    binary data

    hey all. I want to write binary data on the disk and read it again. but when it comes to string "which is important" i can't store any because taking a char* won't store on the disk and taking...
  5. Thread: ray casting

    by muster
    Replies
    1
    Views
    2,479

    ray casting

    Hello all,

    can someone explain how can i make a ray casting rendering in opengl?
  6. Thread: a model library

    by muster
    Replies
    1
    Views
    722

    a model library

    Hey all,
    I know this question is asked over and over but i wanna know a good library that loads 3ds models with texturing and animation and also a reference for using it, since i can't find a full...
  7. Thread: mysql

    by muster
    Replies
    3
    Views
    993

    Re: mysql

    ok i'll check it. tnx
  8. Thread: mysql

    by muster
    Replies
    3
    Views
    993

    mysql

    hey. is there a library i can use for using the mysql?
  9. Thread: hash table

    by muster
    Replies
    13
    Views
    1,282

    Re: hash table

    tnx paul i replaced char* with std::string in the key and it worked and tnx to all your help guys...
  10. Thread: hash table

    by muster
    Replies
    13
    Views
    1,282

    Re: hash table

    yes i know this but what about the hashtable? i need to compare a string key to a char*
  11. Thread: hash table

    by muster
    Replies
    13
    Views
    1,282

    Re: hash table

    yes you are right i noticed it lately. So i tried strcopy but with the same results, and i'm stuck in this coz the md5 class returns string not char*. so is there a way to convert str or const char...
  12. Thread: hash table

    by muster
    Replies
    13
    Views
    1,282

    Re: hash table

    i know this will work, but try setting the key manually after the loop like key="356" and then would the value be shown after it?
    Also for get text this is the code of gettext:


    char *...
  13. Thread: hash table

    by muster
    Replies
    13
    Views
    1,282

    Re: hash table

    the find is working now but the old problem of references for key is still their. Shall i use const for parameters to find the objects through their keys?
  14. Thread: hash table

    by muster
    Replies
    13
    Views
    1,282

    Re: hash table

    well you are right about the [] operator and i'm gonna change it to find. for info i'm using this multi purpose class for two things for now. one i'm using this class for networking so whenever a...
  15. Thread: hash table

    by muster
    Replies
    13
    Views
    1,282

    Re: hash table

    anyone?
  16. Thread: hash table

    by muster
    Replies
    13
    Views
    1,282

    hash table

    hey all. i made a hashtable class that is built on the hash_map library and its done on that way:



    template<class Object1,class Object2> class HashTable
    {
    private:
    typedef...
Results 1 to 16 of 16





Click Here to Expand Forum to Full Width

Featured