2012年5月3日
摘要: 数据结构上的 多项式的合并计算// sadsad.cpp : Defines the entry point for the console application.//#include "stdafx.h"#include "malloc.h"typedef struct node{ int coef; int exp; struct node *link;}PNode,*PLinkList;//以下是创建一个链表PLinkList Creat(int n){ PLinkList p,r,list=NULL; int a,b,i; for(i=1;i& 阅读全文
posted @ 2012-05-03 19:58 今天你很美 阅读(462) 评论(0) 推荐(1)