重载<<链表中的运算符

时间:2013-02-14 01:26:12

标签: c++

我无法为此创建重载编码。不确定从哪里开始或如何开始。我是c ++的新手,无法理解链接列表和节点,即使在阅读完毕后也是如此。这是我到目前为止所做的。

#include "LList.h"
#include <iostream>

using namespace std;

std::ostream& operator<<(ostream& out, const LList& llist);

int main( )
{
LList a;

a.push_back(  "30" );
a.push_front( "20" );
a.push_back(  "40" );
a.push_front( "10" );
a.push_back(  "50" );

cout << "list a:\n" << a << '\n';

return 0;

}

ostream &operator <<( ostream &out, const LList& llist )
{
LList ::          //not sure what to really put from here

return out;
}

这是屏幕截图enter image description here

LLIST.H

#ifndef LList_h
#define LList_h

#include <iostream>
#include "node.h"


class LList
{
public:
LList(void);            //constructor
LList(const LList &);   //copy constructor
~LList();           //destructor
LList *next;            //points to next node
void push_back(const string &str);
void push_front(const string &str);
friend ostream& operator<<(ostream& out, const LList& llist);
LList &operator=(const LList &);        

private:
Node *_head;
Node *_tail;
LList *front;       //points to front of the list

};

inline LList::LList(void)
{
cerr << "default constructor";
}

inline void LList::push_back(const string &str)
{
Node *p = new Node(str);
if (_tail == 0)
{
    _head = _tail = p;
}
else
{
    _tail ->next(p);
    _tail = p;
}
if (_head == 0)
{
    _head = _tail = p;
}
else
{
    _head ->next(p);
    _head = p;
}
}

inline void LList::push_front(const string &str)
{
Node *p = new Node(str);
if (_tail == 0)
{
    _head = _tail = p;
}
else
{
    _tail ->next(p);
    _tail = p;
}
if (_head == 0)
{
    _head = _tail = p;
}
else
{
    _head ->next(p);
    _head = p;
}

}

inline LList::~LList( )
{
Node *p = new Node (str);

if ( _head == 0)
{
    _head = p;
}
else
{
Node *q;
//&Node::next;
    for (q = _head; q->next(); q = q -> next)
{
    //loop until we have
    //q pointing to the last node
}
q->next ( p);   //last node points to p
}       //_uead still points to the first node

}

#endif

我不确定我在哪里。我只是尝试一些事情并从我教授的一些例子中得到一些想法

1 个答案:

答案 0 :(得分:1)

你基本上只需<<要在重载中打印的元素。例如,假设您有一个LList::front()成员函数返回第一个元素,您可以这样打印:

ostream &operator <<( ostream &out, const LList& llist ) {
  return out << llist.front();
}

显然你会想要打印整个列表,而不仅仅是第一个元素(并检查列表是否为空),但这是以相同的方式完成的。这假设LList存储的元素存在过载,如果不存在,则必须提供该元素。