çatışmaları azaltmak/çatışmaları azaltmak ... Ben dosyadan array data[]
için yüklemeye çalışıyorum:Shift/I <code>Bison</code> yeniyim ve ben vardiya ile ilgili sorun yaşıyorum
struct _data
{
char name[50];
char surname[50];
int year;
} data[1000];
parçasıdır benim bizon kod: yanlış gitti
conflicts: 5 shift/reduce
konusunda fikrin:
%token ID NUM NL EOF
%%
File : List EOF
;
List : Record
| List Record
;
Record : Name Surname Year NL { count++; }
| NL { count++; }
| /*empty*/
;
Name : ID { strcpy(data[count].name, yytext); }
;
Surname: ID { strcpy(data[count].surname, yytext); }
;
Year : NUM { data[count].year= atoi(yytext); }
;
%%
bu hatayı alıyorum?