我使用链表来存储我的数据。构造函数和打印函数看起来很好,我只是不知道我的指针是否出错了。
这是我的代码:
#include <iostream>
using namespace std;
///constructor
String::String( const char * s): head(NULL)
{
ListNode * h = head;
h = new ListNode(s[0], NULL);
ListNode * c = h;
for(int i = 1; s[i] != '\0'; ++i)
{
c->next = new ListNode(s[i], NULL);
c = c->next;
}
}
// redefine the << operator
ostream & operator << ( ostream & out, String str )
{
str.print(out);
return out;
}
istream & operator >> ( istream & in, String & str )
{
str.read(in);
return in;
}
void String::print( ostream & out )
{
ListNode * c = head;
for(; c != '\0'; c = c->next)
{out << c->info;}
}
void String::read( istream & in )
{
ListNode * c = head;
for(; c != '\0'; c = c->next)
in >> c->info;
}
int main()
{
cout << "123" << endl;
String firstString("First");
cout << firstString << endl;
cout << "1234" << endl;
cout << "12345" << endl;
return 0;
}
我的结果是
123
1234
12345
有线的是我的123和1234 12345可以打印出来,但是我的第一个&#34;消失。
答案 0 :(得分:0)
问题是你的构造函数。您将head
初始化为null,将head
的值复制为h
(在这种情况下为NULL),指定h
指向新的ListNode
但从不将head
指针重新分配给ListNode
指向的h
。
String::String( const char * s): head(NULL)
{
head = new ListNode(s[0], NULL);
ListNode * c = head;
for(int i = 1; s[i] != '\0'; ++i)
{
c->next = new ListNode(s[i], NULL);
c = c->next;
}
}