求数据结构以及C++ 方面的高手指教。
主要是不理解Status中的用法。我的程序:#include<time.h>#include<iostream>#include<iomanip>usingnamespa...
主要是不理解Status中的用法。我的程序:
#include <time.h>
#include <iostream>
#include <iomanip>
using namespace std;
//要排序的数组的长度,以及取值的范围
#define SIZE 10
#define MAX 10000
//-------线性表的动态分配顺序存储结构-------
#define LIST_INIT_SIZE 100 //线性表存储空间的初始分配量
#define LISTINCREMENT 10 //线性表存储空间的分配增量
#define OK 1
#define ERROR 0
typedef struct{
typedef int Status
ElemType *elem;
int length;
int listsize;
}SqList;
Status InitList_Sq(SqList &L){
//构造一个空的线性表L
L.elem=(ElemType *)malloc(LIST_INIT_SIZE*sizeof(ElemType));
if(!L.elem)exit(OVERFLOW);
L.length=0;
L.listsize=LIST_INIT_SIZE;
return OK;
}
//打印数组
int printarr(int arr[],int len){
for(int i=0;i<len;i++){
if(i%10==0)
cout<<endl;
cout<<setw(4)<<arr[i]<<" ";
}
cout<<endl;
return 0;
}
int main()
{
int arr[SIZE];
int len = sizeof(arr)/sizeof(arr[0]);//SIZE
srand( (unsigned)time( NULL ) );
for(int i=0;i<len;i++){
arr[i] =rand()%MAX;
}
cout<<"生成数组:"<<endl;
printarr(arr,len);
ListDelete_Sq(arr,arr[0]);
cout<<"删除元素值等于arr[0]的元素后的线性表"<<endl;
printarr(arr,len);
//QuickSort(arr,len);
//BigHeapSort(arr,len);
ShellSort(arr,len);
cout<<endl<<"排序后得到的数组:"<<endl;
printarr(arr,len);
system("pause");
return 0;
}
用 DevC++4.9.9.2编译显示主要错误是
19 D:\数据结构\课程设计\第二章第一题.cpp `Status' does not name a type 以及24行还有下面那个 status 行也是一样策错误。
202D:\数据结构\课程设计\第二章第一题.cpp `ListDelete_Sq' undeclared (first use this function)
该怎么改呢? 展开
#include <time.h>
#include <iostream>
#include <iomanip>
using namespace std;
//要排序的数组的长度,以及取值的范围
#define SIZE 10
#define MAX 10000
//-------线性表的动态分配顺序存储结构-------
#define LIST_INIT_SIZE 100 //线性表存储空间的初始分配量
#define LISTINCREMENT 10 //线性表存储空间的分配增量
#define OK 1
#define ERROR 0
typedef struct{
typedef int Status
ElemType *elem;
int length;
int listsize;
}SqList;
Status InitList_Sq(SqList &L){
//构造一个空的线性表L
L.elem=(ElemType *)malloc(LIST_INIT_SIZE*sizeof(ElemType));
if(!L.elem)exit(OVERFLOW);
L.length=0;
L.listsize=LIST_INIT_SIZE;
return OK;
}
//打印数组
int printarr(int arr[],int len){
for(int i=0;i<len;i++){
if(i%10==0)
cout<<endl;
cout<<setw(4)<<arr[i]<<" ";
}
cout<<endl;
return 0;
}
int main()
{
int arr[SIZE];
int len = sizeof(arr)/sizeof(arr[0]);//SIZE
srand( (unsigned)time( NULL ) );
for(int i=0;i<len;i++){
arr[i] =rand()%MAX;
}
cout<<"生成数组:"<<endl;
printarr(arr,len);
ListDelete_Sq(arr,arr[0]);
cout<<"删除元素值等于arr[0]的元素后的线性表"<<endl;
printarr(arr,len);
//QuickSort(arr,len);
//BigHeapSort(arr,len);
ShellSort(arr,len);
cout<<endl<<"排序后得到的数组:"<<endl;
printarr(arr,len);
system("pause");
return 0;
}
用 DevC++4.9.9.2编译显示主要错误是
19 D:\数据结构\课程设计\第二章第一题.cpp `Status' does not name a type 以及24行还有下面那个 status 行也是一样策错误。
202D:\数据结构\课程设计\第二章第一题.cpp `ListDelete_Sq' undeclared (first use this function)
该怎么改呢? 展开
3个回答
迈杰
2024-11-30 广告
2024-11-30 广告
RNA-seq数据分析是转录组研究的核心,包括数据预处理、序列比对、定量分析、差异表达分析、功能注释和可视化等步骤。数据预处理主要是质量控制和去除低质量序列。序列比对使用HISAT2、STAR等工具将reads比对到参考基因组。定量分析评估...
点击进入详情页
本回答由迈杰提供
展开全部
typedef int Status;要写在Sqlist定义的外面吧。
ElemType也没定义。
好几个函数都还没定义。
程序还差很多东西。
ElemType也没定义。
好几个函数都还没定义。
程序还差很多东西。
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
展开全部
typedef struct{
typedef int Status
ElemType *elem;
int length;
int listsize;
}SqList;
typedef int Status
ElemType *elem;
int length;
int listsize;
}SqList;
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询
广告 您可能关注的内容 |