473,480 Members | 1,982 Online
Bytes | Software Development & Data Engineering Community
Create Post

Home Posts Topics Members FAQ

problems with strtok()

22 New Member
Hi everybody!

I'm having trouble using strtok to fill a matrix with int nrs. from a file.
the code that is not working is the following:
Expand|Select|Wrap|Line Numbers
  1. #include <iostream>
  2. #include <fstream>
  3. #include <string>
  4. #include <stdlib.h>
  5. using namespace std;
  6. void leerMatriz(char * archivo,int matriz[11][11]);
  7. void leerMatriz(char * archivo,int matriz[11][11]){
  8.   ifstream in(archivo,ios::in);
  9.   if(!in){
  10.     cerr<<"no se pudo abrir el archivo "<<archivo<<endl;
  11.     exit(1);
  12.   }
  13.   cout<<"archivo abierto"<<endl;
  14.   char * buffer = new char[20];
  15.   int conta = 0;
  16.   cout<<"matriz[9][9]="<<matriz[0][9]<<endl;
  17.   while(in.getline(buffer,20)&&conta<10){
  18.     cout<<"entrando al while"<<endl;
  19.     char * token = strtok(buffer,",");
  20.     matriz[conta][0]=atoi(token);
  21.     token = strtok(NULL,",");
  22.     matriz[conta][1]=atoi(token);
  23.     token = strtok(NULL,",");
  24.     matriz[conta][2]=atoi(token);
  25.     token = strtok(NULL,",");
  26.     matriz[conta][3]=atoi(token);
  27.     token = strtok(NULL,",");
  28.     matriz[conta][4]=atoi(token);
  29.     token = strtok(NULL,",");
  30.     matriz[conta][5]=atoi(token);
  31.     token = strtok(NULL,",");
  32.     matriz[conta][6]=atoi(token);
  33.     token = strtok(NULL,",");
  34.     matriz[conta][7]=atoi(token);
  35.     token = strtok(NULL,",");
  36.     matriz[conta][8]=atoi(token);
  37.     token = strtok(NULL,",");
  38.     matriz[conta][9]=atoi(token);
  39.     /*token = strtok(NULL,",");*/
  40.     conta++;
  41.     }
  42.   cout<<"matriz leida"<<endl;
  43. }
  44. int main(){
  45.   int matriz[11][11];
  46.   leerMatriz("matriz_ejemplo.txt",matriz);
  47. }
  48.  
the textfile matriz_ejemplo.txt
is the following
Expand|Select|Wrap|Line Numbers
  1. .,.,.,9,.,5,.,.,.
  2. 3,.,.,.,4,6,9,.,.
  3. 7,9,.,.,.,.,.,4,6
  4. 6,.,2,.,3,.,.,.,.
  5. .,.,.,.,.,.,.,.,.
  6. .,.,.,.,6,.,5,.,4
  7. 8,6,.,.,.,.,.,7,9
  8. .,.,1,6,7,.,.,.,3
  9. .,.,.,2,.,9,.,.,.
  10.  
the programm compiles fine but when I run it it tells me the following.
$ ./a.exe
archivo abierto
matriz[9][9]=1628583705
entrando al while
entrando al while
21 [main] a 2908 _cygtls::handle_exceptions: Error while dumping state (pro
bably corrupted stack)
Segmentation fault (core dumped)
Oct 19 '06 #1
3 3784
arne
315 Recognized Expert Contributor
Hi everybody!

I'm having trouble using strtok to fill a matrix with int nrs. from a file.
the code that is not working is the following:
Expand|Select|Wrap|Line Numbers
  1. #include <iostream>
  2. #include <fstream>
  3. #include <string>
  4. #include <stdlib.h>
  5. using namespace std;
  6. void leerMatriz(char * archivo,int matriz[11][11]);
  7. void leerMatriz(char * archivo,int matriz[11][11]){
  8.   ifstream in(archivo,ios::in);
  9.   if(!in){
  10.     cerr<<"no se pudo abrir el archivo "<<archivo<<endl;
  11.     exit(1);
  12.   }
  13.   cout<<"archivo abierto"<<endl;
  14.   char * buffer = new char[20];
  15.   int conta = 0;
  16.   cout<<"matriz[9][9]="<<matriz[0][9]<<endl;
  17.   while(in.getline(buffer,20)&&conta<10){
  18.     cout<<"entrando al while"<<endl;
  19.     char * token = strtok(buffer,",");
  20.     matriz[conta][0]=atoi(token);
  21.     token = strtok(NULL,",");
  22.     matriz[conta][1]=atoi(token);
  23.     token = strtok(NULL,",");
  24.     matriz[conta][2]=atoi(token);
  25.     token = strtok(NULL,",");
  26.     matriz[conta][3]=atoi(token);
  27.     token = strtok(NULL,",");
  28.     matriz[conta][4]=atoi(token);
  29.     token = strtok(NULL,",");
  30.     matriz[conta][5]=atoi(token);
  31.     token = strtok(NULL,",");
  32.     matriz[conta][6]=atoi(token);
  33.     token = strtok(NULL,",");
  34.     matriz[conta][7]=atoi(token);
  35.     token = strtok(NULL,",");
  36.     matriz[conta][8]=atoi(token);
  37.     token = strtok(NULL,",");
  38.     matriz[conta][9]=atoi(token);
  39.     /*token = strtok(NULL,",");*/
  40.     conta++;
  41.     }
  42.   cout<<"matriz leida"<<endl;
  43. }
  44. int main(){
  45.   int matriz[11][11];
  46.   leerMatriz("matriz_ejemplo.txt",matriz);
  47. }
  48.  
the textfile matriz_ejemplo.txt
is the following
Expand|Select|Wrap|Line Numbers
  1. .,.,.,9,.,5,.,.,.
  2. 3,.,.,.,4,6,9,.,.
  3. 7,9,.,.,.,.,.,4,6
  4. 6,.,2,.,3,.,.,.,.
  5. .,.,.,.,.,.,.,.,.
  6. .,.,.,.,6,.,5,.,4
  7. 8,6,.,.,.,.,.,7,9
  8. .,.,1,6,7,.,.,.,3
  9. .,.,.,2,.,9,.,.,.
  10.  
the programm compiles fine but when I run it it tells me the following.
$ ./a.exe
archivo abierto
matriz[9][9]=1628583705
entrando al while
entrando al while
21 [main] a 2908 _cygtls::handle_exceptions: Error while dumping state (pro
bably corrupted stack)
Segmentation fault (core dumped)
The problem is that you pass NULL to atoi: you have only 9 tokens, but you try to read 10. Remove the line
Expand|Select|Wrap|Line Numbers
  1.   matriz[conta][9]=atoi(token);
  2.  
which is the 10th (not the 9th) and the program will work fine.
Even better: check the return value of strtok for being NULL (meaning that no token has been found).
Oct 20 '06 #2
nomad5000
22 New Member
Thank you very much!

What a stupid mistake.
Oct 20 '06 #3
arne
315 Recognized Expert Contributor
Thank you very much!

What a stupid mistake.
It was a pleasure to help :)
Oct 20 '06 #4

Sign in to post your reply or Sign up for a free account.

Similar topics

2
2053
by: Adam Balgach | last post by:
Hello hello, i am trying to parse up a line that is in the format: @xxxxx yyyyyy {zzzzz, aaaaaa, bbbbbb} where there could be any number of elements inbetween the { ... } i am only...
13
4889
by: ern | last post by:
I'm using strtok( ) to capture lines of input. After I call "splitCommand", I call strtok( ) again to get the next line. Strtok( ) returns NULL (but there is more in the file...). That didn't...
2
491
by: Michael | last post by:
Hi All, I'm trying to tokenise a string using strtok(), but I cat get it to give me the second token. What have I done wrong here? void function(int *Result, char *Input){ ....variables...
8
1908
by: hu | last post by:
hi, everybody! I'm testing the fuction of strtok(). The environment is WinXP, VC++6.0. Program is simple, but mistake is confusing. First, the below code can get right outcome:"ello world, hello...
2
1685
by: J4CK4L | last post by:
Hi everyone, I've just created a function in a header file that accept a string and parse but the prototipe of the function return me an exception: #include <stdio.h> #include <string.h> int...
4
2706
by: Michael | last post by:
Hi, I have a proble I don't understand when using strtok(). It seems that if I make a call to strtok(), then make a call to another function that also makes use of strtok(), the original call is...
29
2546
by: Pietro Cerutti | last post by:
Hello, here I have a strange problem with a real simple strtok example. The program is as follows: ### BEGIN STRTOK ### #include <string.h> #include <stdio.h>
12
2334
by: Pilcrow | last post by:
Here is a quick program, together with its output, that illustrates what I consider to be a deficiency of the standard function strtok from <string.h>: I am using C:\>gcc --version gcc (GCC)...
14
1682
by: stevenruiz | last post by:
Hello All My question mainly is how to use/reference Double Pointers? I am currently trying to understand what the meaning of a 'vector of pointers' means also? What I am trying to do is take...
0
7054
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
6918
by: Hystou | last post by:
Most computers default to English, but sometimes we require a different language, especially when relocating. Forgot to request a specific language before your computer shipped? No problem! You can...
0
7003
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
5357
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,...
1
4798
isladogs
by: isladogs | last post by:
The next Access Europe User Group meeting will be on Wednesday 1 May 2024 starting at 18:00 UK time (6PM UTC+1) and finishing by 19:30 (7.30PM). In this session, we are pleased to welcome a new...
0
4495
by: conductexam | last post by:
I have .net C# application in which I am extracting data from word file and save it in database particularly. To store word all data as it is I am converting the whole word file firstly in HTML and...
0
3000
by: adsilva | last post by:
A Windows Forms form does not have the event Unload, like VB6. What one acts like?
0
1310
by: 6302768590 | last post by:
Hai team i want code for transfer the data from one system to another through IP address by using C# our system has to for every 5mins then we have to update the data what the data is updated ...
1
570
muto222
php
by: muto222 | last post by:
How can i add a mobile payment intergratation into php mysql website.

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.