Search:

Type: Posts; User: Xinok

Search: Search took 0.01 seconds.

  1. Replies
    12
    Views
    2,603

    B-Trees are VERY close to the concept I have in...

    B-Trees are VERY close to the concept I have in mind. One problem though: When you delete an element in a B-Tree, it doesn't seem to collapse the index. In another words, if you delete element '11',...
  2. Replies
    12
    Views
    2,603

    I'm not exactly sure what Vectors are, but what I...

    I'm not exactly sure what Vectors are, but what I can find and understand about them:
    Are vectors simply like dynamic arrays, except they allocate in certain size blocks of memory? ex. It allocates...
  3. Replies
    12
    Views
    2,603

    Dynamic storage class?

    Stacks are highly dynamic. You can insert and remove nodes at will, but stacks are horrible for random access.
    Dynamic arrays are great for random access, but inserting or removing a node requires...
  4. Replies
    1
    Views
    1,476

    Need simple hash function

    I'm writing a hashtable class in C++, and I just need a simple hash function. It won't be used to hash anything longer than a string. It doesn't have to be a secure hash, just fast and light.
Results 1 to 4 of 4