注册 登录
编程论坛 数据结构与算法

刚接触数据结构,请高手赐教

夏851773277 发布于 2011-11-05 12:02, 788 次点击
#include <stdio.h>
#include <stdlib.h>

typedef int Status;
#define OK     1
#define ERROR 0
#define OVERFLOW -2
#define LIST_INIT_SIZE 100
#define LISTINCREMENT 10

typedef struct{
int *elem;
int length;
int listsize;
}SqList;

Status InitList_Sq(SqList &L)
{
//构造空线性表L
L.elem = (int *)malloc(LIST_INIT_SIZE*sizeof(int));
if(!L.elem) exit(OVERFLOW);
L.length = 0;
L.listsize = LIST_INIT_SIZE;
return OK;
}//InitList_Sq
将这个程序修改下,使之能在C++坏境下正确运行
2 回复
#2
跳跳鱼2011-11-07 21:46
你这个程序怎么没有主函数?话说要在c++中运行应该很简单啊,若使用cin ,cout只需在程序开头加入

#include <iostream>
using namespace std;
就行啦!而且c也可以在c++中运行的!
#3
夏8517732772011-11-12 12:30
恩,我知道了,谢谢
1