首页    新闻    小组    威客    人才    下载    博客    代码贴    在线编程    论坛
代码贴一天一天谎言的代码贴全部
#include <iostream>
#include <malloc.h>
using namespace std;
typedef struct
{
    float coef;
    int expn;
}ElemType;
typedef struct PolyNode
{
    ElemType data;
    struct PolyNode *next;
......................
阅读全部 | 2015年4月6日 15:48
#include <iostream>
#include <malloc.h>
using namespace std;
typedef struct
{
    float coef;
    int expn;
}ElemType;
typedef struct PolyNode
{
    ElemType data;
    struct PolyNode *next;
......................
阅读全部 | 2015年4月6日 15:29
#include <malloc.h>
#include <iostream>
using namespace std;
#define error -1;
#define ok 1;
typedef int ElemType;
typedef int Status;
typedef struct LNode
{
    ElemType data;
    struct LNode *next;
}LNode,*LinkList;
......................
阅读全部 | 2015年3月28日 20:43
#include <malloc.h>
#include <iostream>
using namespace std;
#define error -1;
#define ok 1;
typedef int ElemType;
typedef int Status;
typedef struct LNode
{
    ElemType data;
    struct LNode *next;
}LNode,*LinkList;
......................
阅读全部 | 2015年3月28日 20:42
#include <malloc.h>
#include <iostream>
using namespace std;
#define error -1;
#define ok 1;
typedef int ElemType;
typedef int Status;
typedef struct LNode
{
    ElemType data;
    struct LNode *next;
}LNode,*LinkList;
......................
阅读全部 | 2015年3月28日 20:39
#include <malloc.h>
#include <iostream>
using namespace std;
#define error -1;
#define ok 1;
typedef int ElemType;
typedef int Status;
typedef struct LNode
{
    ElemType data;
    struct LNode *next;
}LNode,*LinkList;
......................
阅读全部 | 2015年3月28日 19:55
#include "cmath"
#include "iostream"
using namespace std;
class CPoint
{
public:
CPoint(){cout<<"CPoint类的无参构造函数被调用"<<endl;}
CPoint(int xx,int yy);
CPoint(CPoint &p);
~CPoint(){cout<<"CPoint类的析构函数被调用"<<endl;}
getx();
gety();
......................
阅读全部 | 2015年3月15日 15:10
1
一天一天谎言