双链接列表迭代器实现的问题

时间:2013-11-20 16:32:07

标签: c++ list iterator

我在使用简单的双链接列表类时遇到了一些问题。

以下是我的所有代码:

/*
 * DLList.h
 *
 *  Created on: Nov 19, 2013
 *      Author: tyler
 */

#ifndef DLLIST_H_
#define DLLIST_H_
#include <iostream>
using namespace std;

template <typename T>
class DLList{
private:
struct DLLNode{
private:
    T data_;
    bool visited_;
    DLLNode* next_;
    DLLNode* prev_;
public:

    DLLNode(T data){
        this->data_ = data;
        visited_ = false;
        next_ = NULL;
        prev_ = NULL;
    }

    void setData(T data){
        this->data_ = data;
    }

    void visit(){
        visited_ = true;
    }

    void unvisit(){
        visited_ = false;
    }

    void setNext(DLLNode* next){
        this->next_ = next;
    }

    void setPrev(DLLNode* prev){
        this->prev_ = prev;
    }

    T& getData(){
        return data_;
    }

    bool getVisited(){
        return visited_;
    }

    DLLNode* getNext(){
        return next_;
    }

    DLLNode* getPrev(){
        return prev_;
    }
};

    DLLNode* head_;
    DLLNode* tail_;

public:
    DLList(){
        head_ = NULL;
        tail_ = NULL;
    }

    class DLLiterator{
    private:
        DLLNode* node;
    public:
        DLLiterator(){
            node = head_;
        }
        T& operator*(const DLLiterator& iter){
            return iter.node->getData();
        }
        DLLiterator& operator++(const DLLiterator& iter){
            if(node->getNext() != NULL)
                node = node->getNext;
            else
                node = NULL;
            return *this;
        }
    };   

    bool isEmpty(){
        return (head_ == NULL);
    }

    void addNodeEnd(T data){
        DLLNode* temp = new DLLNode(data);

        if(isEmpty()){
            head_ = temp;
            tail_ = temp;
        }
        else{
            DLLNode* curr;
            curr = tail_;
            curr->setNext(temp);
            temp->setPrev(curr);
            tail_ = temp;
        }
    } 

    bool contains(T data){
        for(DLLNode* start = head_; start != NULL; start = start->getNext()){
            if(start->getData() == data)
                return true;
        }
        return false;
    }

    void remove(T data){
        for(DLLNode* curr = head_; curr != NULL; curr = curr->getNext()){
            DLLNode* key = curr;
            if(curr->getData() == data){
                if(curr == head_){
                    head_ = key->getNext();
                    key->getNext()->setPrev(NULL);
                    delete key;
                }
                if(curr == tail_){
                    tail_ = key->getPrev();
                    key->getPrev()->setNext(NULL);
                    delete key;
                }
                else{
                    DLLNode* prev;
                DLLNode* next;
                    prev = key->getPrev();
                    next = key->getNext();
                    prev->setNext(next);
                    next->setPrev(prev);
                    delete key;
                }
            }
        }
    }

    void printList(){
        for(DLLNode* curr = head_; curr != NULL; curr = curr->getNext()){
            cout << curr->getData() << "\n";
        }
    }
};



#endif /* DLLIST_H_ */

我的问题是我不知道如何在外部类中实际使用迭代器。其他一切都经过测试,似乎工作正常。仍然需要添加一个简单的析构函数,但我现在关注的是迭代器。任何帮助都会很棒。

我试过这样做:

DLLiterator iter;

但这显然是错误的......

编辑:这是现在的运算符++代码:

iterator operator++(){
    if(node_->getNext() != NULL)
        node_ = node_->getNext;
    else
        node_ = NULL;
    return *this;
}

但现在它要求int作为参数......?

1 个答案:

答案 0 :(得分:1)

在课外,你必须使用限定名DLList<whatever>::DLLiterator。您可以看到将疣添加到嵌套名称中没有什么意义,除非您希望您的名称难以阅读:它只是部分重复了范围名称。我将其重命名为iterator

现在您的问题是它尝试使用列表成员head_初始化自己,但它无法访问列表以从中提取头部。您可能希望遵循标准容器的示例,并通过列表成员创建迭代器:

iterator begin() {return iterator(head_);}

并相应地修改迭代器的构造函数。

在C ++ 11中,这意味着用户通常不必写出令人讨厌的限定名称;你可以用

获得一个迭代器
auto it = list.begin();

最后,从迭代器的operator*operator++中删除参数。由于它们是成员函数,因此它们的操作数隐式传递为this,而不是显式地作为参数传递。