0
/* Copy constructor */
List(const List<value_type>& list)
{
    // for (iterator it = list.begin(); it != list.end(); ++it); 
    //   this->push_back(*it);
    // The commented part above is what I want it to do.
    std::cout << "empty = " << this->empty(); // no seg fault;
    std::cout << "size = " << this->size(); // also causes a seg fault
    this->push_back("string") // causes a seg fault
}

このコードを実行しようとすると、プログラムにセグ フォールトが発生します。(これを)変更または変更しようとするたびに、単にセグフォルトがスローされるようです。

また、(これ) は空ではありません (セグ フォールトをスローしないのはこれだけのようです)。

詳細情報を得るために呼び出されるメソッドのコードを次に示します。うまくいけば、ここで何が起こっているのかについて、誰かが私に洞察を与えることができます.

void insert(iterator position, const value_type& in)
{
    // If inserting at the front, just change the head to a new Node
    if (position == this->head) 
        this->head = new Node<value_type>(in);
    else
    {
        Node<value_type>* node = this->head;
        // iterate to the position of "position".
        for (; node->next != position.node; node = node->next);
        node->next = new Node<value_type>(in);
    }
    // This is here to put back all the old data into it's correct position.
    // I was having way too much with keeping the integrity of the data
    // while inserting into the middle of the list, so I created this little hack.
    for (iterator it = position; it != this->end(); ++it)
    {
            Node<value_type> *node = this->head;
            for (; node->next != NULL; node = node->next);
            node->next = new Node<value_type>(it.node->data);
    }
}

// Insert at end
void push_back(value_type in)
{
    this->insert(this->end(), in);
}

unsigned size()
{
    if (this->empty()) return 0;
    unsigned i = 0;
    for (iterator it = this->begin(); it != this->end(); ++it, ++i);
    return i;
}

bool empty() const { return this->head == NULL; }
4

1 に答える 1

0

これを書いた直後に問題を解決しました。

私がしなければならなかったのは、最初に頭をNULLに割り当てることだけでした

List(List<value_type>& list)
{
    this->head = NULL;

    for (iterator it = list.begin(); it != list.end(); ++it)
        this->push_back(*it);
}
于 2013-03-11T11:14:25.440 に答える