#include <stdio.h> #include <stdlib.h> typedef char EXPRESS[40]; typedef struct fraction { int num; int den; } FRACTION; typedef struct s_item { FRACTION value; EXPRESS expr; int map; struct s_item*next; } ITEM,*PITEM;