Results 1 to 3 of 3
-
10-19-2011, 03:11 AM #1
- Member Since
- Oct 19, 2011
- Posts
- 3
Segmentation fault when trying to print out a linked listHey everyone, this is my first time posting, so hopefully i won't commit some kind of egregious faux pas.
Anyways, I'm trying to create and read back a simple linked list in C++. So far, I think I've built it and filled it with 10 different arrays of characters of about 22 characters each. (They are simple questions written in english.) My program compiles fine, and it runs, but only to a certain point. When it gets to the following line:
Code:cout << current->info << " "<<endl; //outputs the 'info' component of the //current node
Code:head = buildlist(); //calls a function to build the list, and sets head //equal to the first node. (i think) current = head; //sets current equal to head.
first = 0x100100080
first->link = 0x10010090
first->info = This is statement 1.
second = 0x10010090
second->link = 0x1001000a0
second->info = This is statement 2.
third = 0x1001000a0
third->link = 0x1001000b0
third->info = This is statement 3.
.
.
.
last = 0x100100110
last->link = 0
last->info = This is statement 10.
...Now all this seems fine and good, but after this is done and I set 'head' equal to the function, and then ask it to print out 'head', it gives me this:
head= 0x7fff70464b00
head->link= 0x7fff704614a0
head->info = ?핂?
...The info here is really very weird, and it's obviously not equivalent to the array of characters "This is statement 1." I feel that this might be because I'm setting the 'head' wrong. I want it to be equal to the first node of the list, but I'm not sure if setting it equal to the function call that builds the entire list is the way to do that.
The way I have the program written, it's supposed to iterate over each item in the list and print out the info in each. (10 items in all). It [should] do this by first setting 'current = head', and then after each iteration setting 'current = current->link'.
For some reason, though, it only iterates two complete times, giving me garbled output each time, and then on the third time, it gives me a Segmentation fault instead of printing the info. It looks something like this:
now, we're inside the final while loop
current= 0x7fff70464b00
current->link= 0x7fff704614a0
current->info= ?핂?
current= 0x7fff704614a0
current->link= 0x7fff8295ed7e
current->info= L?Iz??
current= 0x7fff8295ed7e
current->link= 0xe589485500000000
Segmentation fault
... So anyone have any ideas? I apologize if this is too much information, but I wanted to be as thorough as possible without simply posting my code, (it's for a school assignment, and I wanted to keep everything on the "up and up"). That being said, if there's other information anyone needs to make a guess at what's going on, please just let me know.
Also, I'm running this on a 2008 intel-based Macbook, OS X Snow Leopard (Ver. 10.6.8)
-
10-20-2011, 05:43 PM #2
- Member Since
- Jun 25, 2005
- Location
- On the road
- Posts
- 3,231
- Specs:
- 2011 MBP, i7, 16GB RAM, MBP 2.16Ghz Core Duo, 2GB ram, Dual 867Mhz MDD, 1.75GB ram, ATI 9800 Pro vid
I see you got it resolved over at Macrumors
CameraTime - Time lapse photography for novice and advanced users.
When asking questions, post the version of your software. You'll receive better answers.
Please post your results to the thread as it is good feedback.
-
10-21-2011, 03:26 AM #3
- Member Since
- Oct 19, 2011
- Posts
- 3
Yup..
Thread Information
Users Browsing this Thread
There are currently 1 users browsing this thread. (0 members and 1 guests)
Similar Threads
-
Fortran Segmentation fault only on Snow Leopard
By goldfish37 in forum macOS - Development and DarwinReplies: 0Last Post: 04-05-2011, 05:03 AM -
TimeMachine - Backupd keeps crashing -Segmentation Fault?
By jit in forum macOS - Operating SystemReplies: 0Last Post: 05-19-2010, 06:51 AM -
Segmentation fault on applications
By b_smith226 in forum macOS - Apps and GamesReplies: 0Last Post: 11-25-2008, 10:33 AM -
Can't startup Power Mac G5 - fatal signal: Segmentation fault
By beck76 in forum macOS - Operating SystemReplies: 4Last Post: 08-27-2007, 04:48 PM -
logkext segmentation fault?
By pinkdog in forum macOS - Apps and GamesReplies: 0Last Post: 04-20-2007, 11:22 AM