首页    新闻    小组    威客    人才    下载    博客    代码贴    在线编程    论坛
代码贴buptmxb的代码贴全部
#include<stdio.h>
#include<stdlib.h>
typedef struct polynode
{
int coef;
int exp;
struct polynode * next;
}PNode;
PNode * Creat_Linkst (int n)
{
PNode * head, * p, * s;
int i;
......................
阅读全部 | 2017年5月18日 23:05
#include<stdio.h>
#include<stdlib.h>
typedef struct polynode
{
int coef;
int exp;
struct polynode * next;
}PNode;
PNode * Creat_Linkst (int n)
{
PNode * head, * p, * s;
int i;
......................
阅读全部 | 2017年5月18日 23:04
1
buptmxb