YACC语法减少/减少冲突

时间:2012-03-10 19:50:13

标签: c grammar bison yacc reduce-reduce-conflict

我有以下语法来检查XML文件的有效性,文件以元素开头,然后是根节点。

program
    : terminal_node
      root
    ;
root
    : '<' ID attribute_list '>' node_list '<' ID '/''>'
    ;
node_list
    : node
    | node node_list
    ;
node
    : terminal_node
    : nonterminal_node
    ;   

terminal_node
    : '<' ID attribute_list '/''>'
    ;

nonterminal_node
    : '<' ID attribute_list '>' node_list '<' ID '/''>'
    ;
attribute_list
    : attribute
    | attribute attribute_list
    ;

attribute
    : ID ASSIGNOP '"' ID '"'
    | ID ASSIGNOP '"' NUM '"'
    ;

我得到1减少/减少冲突,我不知道如何找到它。任何帮助将不胜感激。

1 个答案:

答案 0 :(得分:1)

这对于XML语法来说有点奇怪。您确定不想要空node_list s或attribute_list s?

无论如何,试试这个:

node_list
    : node
    | node_list node /* list first, element second, this is the LALR way */
    ;
node
    : terminal_node
    | nonterminal_node /* note a typo in your code here */
    ;