Search:

Type: Posts; User: CodeTheLoad

Search: Search took 0.00 seconds.

  1. Replies
    6
    Views
    2,918

    Yeah, that's pretty much the goal. I want to...

    Yeah, that's pretty much the goal. I want to implement it as a chained hashtable, using the hash table as a table of buckets to store individual linked lists. Each List Node then has a pointer to a...
  2. Replies
    6
    Views
    2,918

    Originally I had made the Persons data private...

    Originally I had made the Persons data private with the intention of using accessors and mutators in the .cpp file. If I was to make the data public in the Person.h file would that not make the...
  3. Replies
    6
    Views
    2,918

    will i still be able to dereference the pointer...

    will i still be able to dereference the pointer to Person if the data in the Person class is private? Or should i just make it public?
  4. Replies
    6
    Views
    2,918

    TO CLARIFY: i want the " Person* data " to return...

    TO CLARIFY: i want the " Person* data " to return a collection of all the fields in the Person class (name, address, number etc.) so that i can access each field and change the data when adding a new...
  5. Replies
    6
    Views
    2,918

    Dynamic Hash Table Implementation?!?

    Okay so this may be a little hard to follow, A because logic can be tough to get your head around without a visual aid & B i might not explain it the best haha.. so bare with me please...

    ok so I...
  6. Thank you, appreciate the help! :) Yeah i'm not...

    Thank you, appreciate the help! :) Yeah i'm not even sure i know what i'm asking some times to be honest haha... Practice makes perfect i guess (or at least a little less hopeless).
  7. Looking at my code again there.. The thought...

    Looking at my code again there.. The thought occurred that the data and next pointer that are stored in my ListNode class are PRIVATE, i could be wrong but does this mean they can only be accessed by...
  8. WARNING NOOB ALERT! Linked List Node get set

    Okay so i'm gonna start with the old cliche "I'm new to C++...", I dont understand the use of the getNext() setNext() etc functions i am supposed to implement in my ListNode.cpp file..



    class...
  9. Structs, Pointers, Memory Allocation, Stacks

    Hello Everyone!

    Okay so I am studying a computing course and i am new to the C language. I have been given an assignment but i have no idea where to start, if anyone could provide any useful...
Results 1 to 9 of 9