- 226 名前:デフォルトの名無しさん mailto:sage [2007/10/26(金) 00:24:24 ]
- >>218 直した
static struct c *re_internal(struct c *l) { struct c *p; if(l->n==NULL) return l; p = re_internal(l->n); // <- この行 l->n->n = l; l->n = NULL; return p; } struct c *re(struct c *l) { if(l->n) l->n = re_internal(l->n); return l; } >>224 thx
|

|