473,406 Members | 2,387 Online
Bytes | Software Development & Data Engineering Community
Post Job

Home Posts Topics Members FAQ

Join Bytes to post your question to a community of 473,406 software developers and data experts.

Reading in a file into a Linked List - Segmentation Fault

Hello,

I'm trying to read data from a file and then insert that into a linked
list. The way I have it, the program compiles, however, I'm getting a
segmentation fault error message when I run the program. I'm fairly new
at the pointer business, and I'd appreciate any advice. Here's my code:

int main()
{
ifstream fin;
Fish fishy;
FishLinkedList lake;

fishy.readFishData(fin);
while (!fin.fail()) {
lake.insertAtHead(fishy);
fishy.readFishData(fin);
}

fin.clear();
fin.close();

}

void Fish::readFishData(istream &sin) {
getline(sin, type, '/');
sin >> weight;
sin.ignore(80, '\n');
}

void FishLinkedList::insertAtHead(Fish fishy)
{
if (head != NULL) { // there is a list
Fish *temp = head;
Fish *insertMe = &fishy;
temp->setNext(insertMe);
} else {
head = &fishy;
}
}

Thanks!

Frank

Jul 22 '05 #1
3 2942
"Francis Bell" <ph**********@charter.net> wrote...
I'm trying to read data from a file and then insert that into a linked
list. The way I have it, the program compiles, however, I'm getting a
segmentation fault error message when I run the program. I'm fairly new
at the pointer business, and I'd appreciate any advice. Here's my code:

int main()
{
ifstream fin;
Fish fishy;
FishLinkedList lake;

fishy.readFishData(fin);
while (!fin.fail()) {
lake.insertAtHead(fishy);
fishy.readFishData(fin);
}

fin.clear();
fin.close();

}

void Fish::readFishData(istream &sin) {
getline(sin, type, '/');
sin >> weight;
sin.ignore(80, '\n');
}

void FishLinkedList::insertAtHead(Fish fishy)
This function accepts its argument _by_value_. That is, when
the function is called a _temporary_ object is created. It
lives only until the function returns (and that's important).
{
if (head != NULL) { // there is a list
Fish *temp = head;
Fish *insertMe = &fishy;
Here you take an address of the temporary value.
temp->setNext(insertMe);
Here you store that address.
} else {
head = &fishy;
Here you store the address of the temporary in the 'head'
variable (that you hope will be valid next time around).
It will NOT.
}
}


You need either to set up your list (which, BTW, you never
showed) to store the _values_ of those fishes, not _pointers_,
or, if you insist on storing pointers, you gotta store the
addresses of dynamically allocated objects.

I recommend the first approach, it's easier. The second one
will require some kind of clean-up (for freeing that memory)
which in itself can take all fun out of studying pointers.

Victor
Jul 22 '05 #2
Victor Bazarov wrote:
"Francis Bell" <ph**********@charter.net> wrote...
I'm trying to read data from a file and then insert that into a linked
list. The way I have it, the program compiles, however, I'm getting a
segmentation fault error message when I run the program. I'm fairly new
at the pointer business, and I'd appreciate any advice. Here's my code:

int main()
{
ifstream fin;
Fish fishy;
FishLinkedList lake;

fishy.readFishData(fin);
while (!fin.fail()) {
lake.insertAtHead(fishy);
fishy.readFishData(fin);
}

fin.clear();
fin.close();

}

void Fish::readFishData(istream &sin) {
getline(sin, type, '/');
sin >> weight;
sin.ignore(80, '\n');
}

void FishLinkedList::insertAtHead(Fish fishy)

This function accepts its argument _by_value_. That is, when
the function is called a _temporary_ object is created. It
lives only until the function returns (and that's important).

{
if (head != NULL) { // there is a list
Fish *temp = head;
Fish *insertMe = &fishy;

Here you take an address of the temporary value.

temp->setNext(insertMe);

Here you store that address.

} else {
head = &fishy;

Here you store the address of the temporary in the 'head'
variable (that you hope will be valid next time around).
It will NOT.

}
}

You need either to set up your list (which, BTW, you never
showed) to store the _values_ of those fishes, not _pointers_,
or, if you insist on storing pointers, you gotta store the
addresses of dynamically allocated objects.

I recommend the first approach, it's easier. The second one
will require some kind of clean-up (for freeing that memory)
which in itself can take all fun out of studying pointers.

Victor

Thanks Victor! I kind of understand what you are saying...with one
glaring exception. You said I need to set up my list to store the
values of those fishes; I honestly that that was what I was doing with
this insert function. I thought I was creating a list and inserting
each fishy that gets read in into the front position of the list. I'm
simply drawing a blank on what I need to do here.

Frank

Jul 22 '05 #3
"Francis Bell" <ph**********@charter.net> wrote...
Victor Bazarov wrote:
"Francis Bell" <ph**********@charter.net> wrote...
I'm trying to read data from a file and then insert that into a linked
list. The way I have it, the program compiles, however, I'm getting a
segmentation fault error message when I run the program. I'm fairly new
at the pointer business, and I'd appreciate any advice. Here's my code:

int main()
{
ifstream fin;
Fish fishy;
FishLinkedList lake;

fishy.readFishData(fin);
while (!fin.fail()) {
lake.insertAtHead(fishy);
fishy.readFishData(fin);
}

fin.clear();
fin.close();

}

void Fish::readFishData(istream &sin) {
getline(sin, type, '/');
sin >> weight;
sin.ignore(80, '\n');
}

void FishLinkedList::insertAtHead(Fish fishy)

This function accepts its argument _by_value_. That is, when
the function is called a _temporary_ object is created. It
lives only until the function returns (and that's important).

{
if (head != NULL) { // there is a list
Fish *temp = head;
Fish *insertMe = &fishy;

Here you take an address of the temporary value.

temp->setNext(insertMe);

Here you store that address.

} else {
head = &fishy;

Here you store the address of the temporary in the 'head'
variable (that you hope will be valid next time around).
It will NOT.

}
}

You need either to set up your list (which, BTW, you never
showed) to store the _values_ of those fishes, not _pointers_,
or, if you insist on storing pointers, you gotta store the
addresses of dynamically allocated objects.

I recommend the first approach, it's easier. The second one
will require some kind of clean-up (for freeing that memory)
which in itself can take all fun out of studying pointers.

Victor

Thanks Victor! I kind of understand what you are saying...with one
glaring exception. You said I need to set up my list to store the
values of those fishes; I honestly that that was what I was doing with
this insert function.


What does 'setNext' do? Doesn't it simply copy the address into some
kind of 'next' member? So, it's not storing _values_, it's storing
_addresses_ of values.
I thought I was creating a list and inserting
each fishy that gets read in into the front position of the list.
You were? Well, you might have been, we couldn't see what you did
there since you didn't post the code that actually does the storing.
I'm
simply drawing a blank on what I need to do here.


Your 'FishLinkedList' is based on storing pointers to 'Fish' objects
(at least that's what it seems to be doing judging from the source,
since you didn't provide the definition and implementation of the
FishLinkedList class). Supposedly, it looks something like this:

class FishLinkedList {
Fish *head; // you have a pointer here
FishLinkedList *next;
public:
FishLinkedList() : head(NULL) {}
void setNext(Fish* pfish);
};

What you need to do here is something like

class FishLinkedList {
Fish value; // actual value, not a pointer
bool has_head;
FishLinkedList *next;
public:
FishLinkedList() : has_head(false) {}
void insert(Fish newvalue);
};

The problem, of course, is that it's basically impossible to value-
based storage unless you allocate all the storage before the program
begins:

class FishLinkedList {
Fish storage[100];
int tail; // where to insert
public:
FishLinkedList() : tail(0) {}
void insert(Fish newvalue) {
if (tail == 100) throw "list is full";
storage[tail++] = newvalue;
}
};

simply because if you don't, you have to fall back on dynamic
allocation of the storage, which presents the same set of problems
that you already faced: pointers.

Find a good book on data structures, a good book on C++ (which will
probably contain some common data structures with examples), and
give it a good read. It is really impossible to present you with
all the material on pointers, dynamic allocation, linked lists,
lifetime of objects, etc. in one newsgroup conversation.

V
Jul 22 '05 #4

This thread has been closed and replies have been disabled. Please start a new discussion.

Similar topics

9
by: fudmore | last post by:
Hello Everybody. I have a Segmentation fault problem. The code section at the bottom keeps throwing a Segmentation fault when it enters the IF block for the second time. const int...
1
by: Yesim | last post by:
Hello, I am trying to read two-dimensional float data into C++, but am getting a segmentation fault error message. This happens in g++ compiler versions 2.95.2 and 3.1, but not on version 3,...
18
by: Digital Puer | last post by:
Hi, I'm coming over from Java to C++, so please bear with me. In C++, is there a way for me to use exceptions to catch segmentation faults (e.g. when I access a location off the end of an array)?...
27
by: Paminu | last post by:
I have a wierd problem. In my main function I print "test" as the first thing. But if I run the call to node_alloc AFTER the printf call I get a segmentation fault and test is not printed! ...
4
by: scythemk | last post by:
Hi, I am writing a program that, everytime it executes, first loads all information from a file into a linked list of nodes, using struct to define it. After manipulating the data and receiving...
4
by: FBM | last post by:
Hi, I am working on a program that simulates one of the elements of ATM. The simulation stores events which occurs every some milliseconds for a certain amount of time. Every time that an event...
7
by: utab | last post by:
Hi there, I am trying to read from a file and at the same time change certain fields of the same field, there are 6 fields in this file like 1 2 3 4 5 6...
116
by: dmoran21 | last post by:
Hi All, I am working on a program to take input from a txt file, do some calculations, and then output the results to another txt file. The program that I've written compiles fine for me, however,...
6
by: mattmao | last post by:
Okay, this is just my exercise in order to prepare for the coming assignment regarding the damned Linked List issue... The task is simple and I am about to finish it. However, I couldn't go around...
0
by: Charles Arthur | last post by:
How do i turn on java script on a villaon, callus and itel keypad mobile phone
0
BarryA
by: BarryA | last post by:
What are the essential steps and strategies outlined in the Data Structures and Algorithms (DSA) roadmap for aspiring data scientists? How can individuals effectively utilize this roadmap to progress...
1
by: nemocccc | last post by:
hello, everyone, I want to develop a software for my android phone for daily needs, any suggestions?
1
by: Sonnysonu | last post by:
This is the data of csv file 1 2 3 1 2 3 1 2 3 1 2 3 2 3 2 3 3 the lengths should be different i have to store the data by column-wise with in the specific length. suppose the i have to...
0
marktang
by: marktang | last post by:
ONU (Optical Network Unit) is one of the key components for providing high-speed Internet services. Its primary function is to act as an endpoint device located at the user's premises. However,...
0
Oralloy
by: Oralloy | last post by:
Hello folks, I am unable to find appropriate documentation on the type promotion of bit-fields when using the generalised comparison operator "<=>". The problem is that using the GNU compilers,...
0
by: Hystou | last post by:
Overview: Windows 11 and 10 have less user interface control over operating system update behaviour than previous versions of Windows. In Windows 11 and 10, there is no way to turn off the Windows...
0
tracyyun
by: tracyyun | last post by:
Dear forum friends, With the development of smart home technology, a variety of wireless communication protocols have appeared on the market, such as Zigbee, Z-Wave, Wi-Fi, Bluetooth, etc. Each...
0
agi2029
by: agi2029 | last post by:
Let's talk about the concept of autonomous AI software engineers and no-code agents. These AIs are designed to manage the entire lifecycle of a software development project—planning, coding, testing,...

By using Bytes.com and it's services, you agree to our Privacy Policy and Terms of Use.

To disable or enable advertisements and analytics tracking please visit the manage ads & tracking page.