摘要: typedef struct List { int exp; int coef; struct List *next; }List,* HeadPointer;//利用指针更新结果链表的同时指向下一节点(WRONG!!!void ins(HeadPointer to,HeadPointer from) { to->next=from; to=to->next; from=f... 阅读全文
posted @ 2010-06-09 23:37 阿毛小猪 阅读(156) 评论(0) 推荐(0) 编辑