LinkListProgram crashing?

I'm having an issue with this Linked List. It runs, gets into the tokenizing function where I believe it is skipping code, then goes into the display and attempts to display "current-> lastName" which must be null, because it crashes.

Any help as to why the code would be skipping within the tokenizing function, and what can I do to fix it?

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
#include <iostream>
#include <fstream>
#include <cstdlib>
#include <stdlib.h>
#include <iomanip>
#include <sstream>
#include <stdio.h>
#include <cstddef>
#include <string.h>

using namespace std;

const int buff_size = 81; // buffer size of 81 characters

ifstream input_File;
ifstream delete_File;
int i = 0;
char *buffer = new char[buff_size], // Tokenizing pointers
     *tokens[3],
	 *ptr;

int pause; // Global for pause use

//-----------------------------------------------------------------------------

struct listNode // Structure named listNode
 {
  string age;       // Values within nodes
  string firstName;
  string lastName;
  listNode* next;
 };

listNode* newNode; // Node pointers

//-----------------------------------------------------------------------------
//-----------------------------------------------------------------------------

void reportDuplicate() // prints duplicates
 {
  cout << "Duplicate Record: " << newNode-> lastName << endl;
 }// end void reportDuplicate()

//-----------------------------------------------------------------------------

void incompleteRecord()
{
 cout << "Record incomplete: " << tokens[0] << endl;
}// end void incompleteRecord()

//-----------------------------------------------------------------------------
//-----------------------------------------------------------------------------
//-----------------------------------------------------------------------------

void insertName(char tokens[0])
{

 // Initializes list on insertion
 // Creates new node and inserts tokenized values

 newNode = new listNode;
 newNode-> lastName = tokens[0];
 newNode-> next = NULL;

 listNode* head;
 listNode* current = head; // set traversal pointer

 if(head == NULL) // If no head node, create one
  {
   head = newNode;
   newNode-> next = NULL;
  }
 else if(head-> lastName > newNode-> lastName)
  {
   newNode-> next = head;
   head = newNode;
  }

 else
  {
   while((current-> next != NULL) && (current-> next-> lastName < newNode-> lastName)) // Traverse the list
   {
	if(current-> lastName == newNode-> lastName)
	 {
	  reportDuplicate();
	 }
	else
	 {
	  current = current-> next;
	 }
   }
	 
	if(current-> lastName < newNode-> lastName)
	 {
	  newNode-> next = current-> next;
	  current-> next = newNode;
	 }

   }//end if(lastName)
}//end void insertName(...)

//-----------------------------------------------------------------------------

void tokenizingFunction()
 {
	 cout << "Tokenizing..." << endl << endl;

    while(input_File.getline(buffer, buff_size))
     {
	  cout << "1" << endl;
      // If we found a blank line (newline char in column 1), ignore it and 
      // continue. 

	  cout << buffer << endl;

      if(strlen(buffer) == 0)
	   continue;
      
	  // ** Windows Machines Only **
      // Break the input string into white space separated tokens.
	  // 3rd parameter needs to be a char**_Context
      // Use char* (placeHolder) as a place holder within the string (used in strtok_s)
	  // Format: ptr = (char *)strtok_s(buffer, " ", &placeHolder);

      ptr = (char *)strtok(buffer, " ");

      // If ptr == NULL, then other than whitespace, the input line is
      // empty.
    
      if(!ptr)
	   continue;
      
      // Store the tokens in tokens[]

      i = 0;

      tokens[i] = (char *)strdup(ptr);

      do
	   {
        ptr = (char *)strtok('\0', " "); 

         if(ptr)
          {
           tokens[++i] = (char *)strdup(ptr);
          }
		 
       }
      while(ptr); 

	  // char* tokens[0] contains string lastName
	  // char* tokens[1] contains string firstName
	  // char* tokens[2] contains string ages
	   
	  cout << tokens[0] << endl;

      insertName(tokens[0]); // Insert
	   
	  
	 }

  delete(buffer);
 } // end void tokenizingFunction()

//-----------------------------------------------------------------------------

  // Possible node activity //

  // newNode-> lastName;   -value of lastName
  // newNode-> firstName;  -value of firstName
  // newNode-> age;        -value of age
  // newNode-> next;       -pointer to next node

//-----------------------------------------------------------------------------

void displayList()
{

 listNode* head;
 listNode* current;

 cout << "\nDisplaying List" << endl << endl;

 current = head;
 cout << "A" << endl;
 
  while(current != NULL)
   {
	   cout << "B" << endl;
    if(current == NULL)
     {
	  cout << "\nEnd of list!" << endl;
     }
    else
     {
		 cout << "C" << endl;
	  cout << current-> lastName << endl;
	     cout << "D" << endl;
	  current = current-> next;
     }
   
  }// end while
}// end void displayList()

//-----------------------------------------------------------------------------
//-----------------------------------------------------------------------------

int main(int argc, char *argv[])
{

if(argc != 2)	// Usage statement
 {
  cout << "\nUsage: " << argv[0] << " 'Input File Name 1'" <<  endl;
  return(0);
 }

//--------------------------- ifstreams

ifstream input_File(argv[1], ios::in);	// Open input file to read from
 if(input_File.is_open())
  {
   cout << "\nInput File is open..." << endl;
  } 
 else
  {
   cout << "\nInput File did NOT open..." << endl;
   return (1);
  }


//-----------------------------------------------------------------------------

// Functions

listNode* head = NULL; // Initialize head pointer

if(input_File.is_open())
{
 if(input_File.good())
  {
   tokenizingFunction(); // tokenizes and inserts into list
  }
}

displayList();

//-----------------------------------------------------------------------------
 
  cin >> pause; // Non Windows Pause similar to (system("pause");)
  return 0;
}


Sorry for all of the "cout" statements, just trying to error check the code and see where it is working towards.

So far, this is what prints.

Input File is open...
Tokenizing...

Displaying List

A
B
C

....crash
http://en.cppreference.com/w/cpp/iterator/next


That might be causing a clash with the std namespace you have on line 11, and your next variable.

Also, there is a bit of a convention to declare functions before main, then put their definitions after main().

Have you thought about using a debugger? It will show where it is going wrong fairly quickly.

HTH
I have used a debugger, however, in a rare set of circumstances with a professor of mine, I use a Window's based machine, and he uses Mac and vim. If I use Visual Studio and attempt to debug it, I have to use Window's version of strtok which is strtok_s. If I use strtok_s, it will not compile on his machine. I have this program working with strtok_s via Visual Studio(added below) however, when I changed it, it stopped running.

Visual Studio running code:
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
#include <iostream>
#include <fstream>
#include <cstdlib>
#include <stdlib.h>
#include <iomanip>
#include <sstream>
#include <stdio.h>
#include <windows.h>
#include <cstddef>
#include <string.h>

using namespace std;

const int buff_size = 81; // buffer size of 81 characters

ifstream input_File;
ifstream delete_File;

int i = 0;
char *buffer = new char[buff_size], // Tokenizing pointers
     *tokens[3],
	 *ptr,
	 *placeHolder;

string firstN; // Global variables
string lastN;
string ages;
int pause;

//-----------------------------------------------------------------------------

struct listNode // Structure named listNode
 {
  string age;       // Values within nodes
  string firstName;
  string lastName;
  listNode* next;
 };

listNode* newNode; // Node pointers
listNode* head;
listNode* current;

//-----------------------------------------------------------------------------

void initializeList() // sets pointers
 {
  listNode* head = NULL;
  listNode* current = head;
 }

//-----------------------------------------------------------------------------

void reportDuplicate() // prints duplicates
 {
  cout << "Duplicate Record: " << newNode-> lastName << endl;
 }

//-----------------------------------------------------------------------------

void incompleteRecord()
{
 cout << "Record incomplete: " << tokens[0] << endl;
}// end void incompleteRecord()

//-----------------------------------------------------------------------------
//-----------------------------------------------------------------------------
//-----------------------------------------------------------------------------

void insertName(string lastN)
{

 // Initializes list on insertion
 // Creates new node and inserts tokenized values

 newNode = new listNode;
 newNode-> lastName = lastN;
 newNode-> next = NULL;

 listNode* current = head; // set traversal pointer

 if(head == NULL) // If no head node, create one
  {
   head = newNode;
   newNode-> next = NULL;
  }
 else if(head-> lastName > newNode-> lastName)
  {
   newNode-> next = head;
   head = newNode;
  }

 else
  {
   while((current-> next != NULL) && (current-> next-> lastName < newNode-> lastName)) // Traverse the list
   {
	if(current-> lastName == newNode-> lastName)
	 {
	  reportDuplicate();
	 }
	else
	 {
	  current = current-> next;
	 }
   }
	 
	if(current-> lastName < newNode-> lastName)
	 {
	  newNode-> next = current-> next;
	  current-> next = newNode;
	 }

   }//end if(lastName)
}//end void insertName(...)

//-----------------------------------------------------------------------------

void tokenizingFunction()
 {
    while(input_File.getline(buffer, buff_size))
     {
      // If we found a blank line (newline char in column 1), ignore it and 
      // continue. 

      if(strlen(buffer) == 0)
	   continue;
      
      // Break the input string into white space separated tokens.
	  // 3rd parameter needs to be a char**_Context
      // Use char* (placeHolder) as a place holder within the string (used in strtok_s)

      ptr = (char *)strtok_s(buffer, " ", &placeHolder); // Remember to change this for Mac

      // If ptr == NULL, then other than whitespace, the input line is
      // empty.
    
      if(!ptr)
	   continue;
      
      // Store the tokens in tokens[]

      i = 0;

      tokens[i] = (char *)_strdup(ptr);

      do
	   {
        ptr = (char *)strtok_s('\0', " ", &placeHolder); // Remember to change this for Mac 

         if(ptr)
          {
           tokens[++i] = (char *)_strdup(ptr);
          }
		 
       }
      while(ptr); 

	  lastN = tokens[0];  // string lastN
	  firstN = tokens[1]; // string firstN
	  ages = tokens[2];   // string ages 

	   if(buffer && tokens[2]) // Not a blank line, and token[2] has token
	   {
        insertName(lastN); // Insert
	   }
	  
	 }

  delete(buffer);
 } // end void tokenizingFunction()

//-----------------------------------------------------------------------------

  // Possible node activity //

  // newNode-> lastName;   -value of lastName
  // newNode-> firstName;  -value of firstName
  // newNode-> age;        -value of age
  // newNode-> next;       -pointer to next node

//-----------------------------------------------------------------------------

void displayList()
{
 cout << "\nDisplaying List" << endl << endl;

 current = head;

  while(current != NULL)
   {
    if(current == NULL)
     {
	  cout << "\nEnd of list!" << endl;
     }
    else
     {
	  cout << current-> lastName << endl;
	  current = current-> next;
     }
   
  }// end while
}// end void displayList()

//-----------------------------------------------------------------------------
//-----------------------------------------------------------------------------

int main()//int argc, char *argv[])
{
   // Open input stream files for use without argc / argv ------ delete before turning in
   input_File.open("InputNameList.txt");
   // delete_File.open("deleteThese.in");


  
/*if(argc != 3)	// Usage statement of how to use program via command line
 {
  cout << "\nUsage: " << argv[0] << " 'Input File Name 1'" << " 'Input File Name 2'\n" <<  endl;
  return(0);
 }

//--------------------------- ifstreams

ifstream input_File(argv[1], ios::in);	// Open first input file to read from
 if(input_File.is_open())
  {
   cout << "\nInput File is open..." << endl;
  } 
 else
  {
   cout << "\nInput File did NOT open..." << endl;
   return (1);
  }

ifstream delete_File(argv[2], ios::in);	// Open second input file to delete from
 if(delete_File.is_open())
  {
   cout << "\nDelete File is open..." << endl;
  }
 else 
  {
   cout << "\nDelete File is NOT open..." << endl;
   return (1);
  }*/

//-----------------------------------------------------------------------------

// Functions

initializeList(); // Initializes head, current, and prev_Ptr
if(input_File.is_open())
{
 while(input_File.good())
  {
   while(!input_File.eof())
    {
     tokenizingFunction(); // tokenizes and inserts into list
    }
  }
}
else
{
 cout << "Input File is NOT Open!" << endl << endl;
 system("pause");
 return (1);
}


displayList();

//-----------------------------------------------------------------------------
 
  cin >> pause; // Non Windows Pause similar to (system("pause");)
  return 0;
}
This one is hard coded for file input, and uses global variables and unnecessary movement of strings from tokens to lastName, but it works.
Hi,

Do you have to use char arrays and strtok at all?

Why not std::string and it's member functions & algorithms (maybe they are not allowed for your assignment?)

Also this link for stringstreams:

http://stackoverflow.com/questions/289347/using-strtok-with-a-stdstring


The char arrays and strtok is actually the professors code and he advised us to use it. The entire tokenizing function is his.
Topic archived. No new replies allowed.