Сколько параметров я могу передать по ссылке в C ++, не получая ненормального поведения - PullRequest
0 голосов
/ 03 июля 2011

У меня была проблема с функцией:

int parsearRestricciones(char linea[], unsigned int& x, unsigned int& y, unsigned int& tiempo, char restric[])

Внутри этой функции я разбираю linea [].

Входные данные состоят из: трех беззнаковых целых и строки знаков препинания. Мне нужно читать их таким образом. Проблема возникает, когда я назначаю atoi (linea + offset) переменной tiempo. Вне функции (т. Е. В main ()) значение tiempo не совпадает со значением внутри. У меня была проблема только с tiempo (я заменил x, y и tiempo указателем на struct. Работает)

В чем может быть проблема?

Спасибо за вашу помощь.

----- редактировать-снова

Полный код:

#include <iostream>
#include <cstdio>
#include <cstdlib>
#include <ctype.h>
#include <cassert>

#define MAX_RESTRIC 3  // Tres sentidos. Si hay 4, se usa '+'
#define MAX_LINEA 80
#define entrada cin


using namespace std;

int parsearRestricciones(char *linea, unsigned int& x, unsigned int& y, unsigned int& t, char *restric) {
// ! solo funciona si x,y,t,restric estan en una misma linea (i.e. no hay CR LF)

int i=0, j=0;

//Parsea x de la casilla
x = atol(linea+i);//strtol(linea,(char**)NULL,10);

while (isdigit(linea[i])) i++;
while (isspace(linea[i])) i++;

//Parsea y de la casilla
y = atol(linea+i);

while (isdigit(linea[i])) i++;
while (isspace(linea[i])) i++;
if(linea[i] == '\0')
    return -1;

//Parsea tiempo
t = atol(linea+i);
cout << "---" << t << endl;

while (!ispunct(linea[i])) i++;

//Parsea restricciones
while (linea[i] != '\0' && linea[i] != ' '){
    restric[j] = linea[i];
    i++; j++;
}
restric[j]='\0';

return 1;

}


int main (int argc, char** argv)
{
// Sugerencia de argumentos
// --d  (por Dijkstra)
// --axe  (por A*, distancia euclideana)
// --axm  (por A*, distancia manhattan)

// y dos màs que veremos luego :)

unsigned int X, Y;
unsigned int xi, yi;
unsigned int xf, yf;

unsigned int x,y,tiempo;

char restricciones[MAX_RESTRIC + 1];


//Buffer para parsear las lineas con restricciones
char linea[MAX_LINEA + 1];

bool finCasos = false;
bool siguienteCaso = false;


while (!finCasos)
{

    if (siguienteCaso){
        // Se leyó otro mapa antes que éste (hubo parseo, y quedo en xcasilla,ycasilla)
        X = x;
        Y = y;
        siguienteCaso = false;

    } else {
        // Sino, lee por primera vez las dimensiones del mapa
        entrada >> X >> Y;
    }

    if ( X == 0  &&  Y == 0 )
        finCasos = true;

    else {

        entrada >> xi >> yi;

        entrada >> xf >> yf;

        // Lee restricciones hasta que encuentra una linea sin ellas (sin tiempo ni direccion)
        // se asumira, que corresponde a las dimensiones del siguiente caso, y los usará en la siguiente
        // iteracion
        while(!siguienteCaso) {

            cin.get(); //lee un '\0' que quedó (?)
            cin.getline(linea, MAX_LINEA+1);

            if ( parsearRestricciones(linea,x,y,tiempo, restricciones) == -1 ) {
                siguienteCaso = true;

            } else {

                cout << "X = " << x << endl;
                cout << "Y = " << y << endl;
                cout << "tiempo = " << tiempo << endl;
                cout << "restric = " << restricciones << endl;
                int j=0;
                cout << "restric = " ;
                while(restricciones[j]!='\0'){
                    cout << restricciones[j];j++;}
                cout << endl;

                //-- agregar datos al grafo/mapa
            }

        }

        // Resolver usando algun algoritmo
        //--- resolver(MAPA)

    }

}


return 0;
}

CFLAGS. -Wall -pipe -g -ggdb -DONLINE_JUDGE -DNDEBUG (Makefile также создает другой источник для uvaonlinejudge)

Введите:

101
10
1
1
2
2
1000 10000  100000 +++++

Выход:

---100000
X = 1000
Y = 10000
tiempo = 65579
restric = +++++
restric = +++++
^X^C (I did break)

Я только что протестировал программу в Windows (используя Code :: Blocks, настройки по умолчанию), и она заработала: /

Кстати, я использую Ubuntu в Virtualbox

Не могли бы вы сказать мне, что я делаю не так?

Ответы [ 2 ]

3 голосов
/ 03 июля 2011

Сколько параметров я могу передать по ссылке в C ++ без ненормального поведения?

Столько, сколько вы хотите!

2 голосов
/ 03 июля 2011

Нет такого ограничения. Однако ваша функция никак не использует tiempo, вместо этого она использует переменную с именем t: t = atol(linea+i);

...