Search:

Type: Posts; User: Lexidata

Search: Search took 0.01 seconds.

  1. Replies
    3
    Views
    971

    Non alligned pointer being freed

    The following code generates error: non alligned pointer being freed.
    What can I do to fix it?


    Experto::~Experto(){
    for(int i = 0; i < 7; ++i){
    delete this->tableroIndices[i];...
  2. Replies
    6
    Views
    974

    Please Help Someone!!

    Please Help Someone!!
  3. Replies
    6
    Views
    974

    Didn't work, thanks anyways.... any other idea?

    Didn't work, thanks anyways.... any other idea?
  4. Replies
    6
    Views
    974

    Trouble with list iterator

    I'm trying to run through a std::list to print some elements see if they hace been correctly inserted in my Hash Table but I just can't understand why the following declaration is wrong (Compiler...
  5. Replies
    5
    Views
    1,615

    It works thanks! I've had a lot of trouble with...

    It works thanks!
    I've had a lot of trouble with tose things in the past and always had to find another way to do what I wanted. Not only your answer was very helpful this time but since I can...
  6. Replies
    5
    Views
    1,615

    Thanks mate! I'll try it right away!

    Thanks mate! I'll try it right away!
  7. Replies
    5
    Views
    1,615

    Ok done, now, can you help me?

    Ok done, now, can you help me?
  8. Replies
    5
    Views
    1,615

    Const qualifier problem

    This is a constructor for a binary tree that creates a copy of the tree given as argument....


    Tree(const Tree<T>& aTree){
    this->ghost = new Node<T>();

    if(aTree.treeIsEmpty()){...
Results 1 to 8 of 8