一维动态数组
- 1、下载文档前请自行甄别文档内容的完整性,平台不提供额外的编辑、内容补充、找答案等附加服务。
- 2、"仅部分预览"的文档,不可在线预览部分如存在完整性等问题,可反馈申请退款(可完整预览的文档不适用该条件!)。
- 3、如文档侵犯您的权益,请联系客服反馈,我们会尽快为您处理(人工客服工作时间:9:00-18:30)。
用动态内存分配方法设计一个数组类,实现排序、插入等基本功能(特别注意拷贝构造函数的写法)#pragma once
#include
using namespace std;
class myArrayList
{
public:
myArrayList(int n=0);
myArrayList(const int *a,int n);
myArrayList(const int *a,int n,int max);
myArrayList(const myArrayList &tList);
~myArrayList(void);
void sort();
void show();
bool orderInsert(int num);
private:
int maxLen;
int Len;
int *arrPtr;
};
#include"myArrayList.h"
myArrayList::myArrayList(int n)
{
this->arrPtr=NULL;
maxLen=Len=0;
}
myArrayList::~myArrayList(void)
{
delete [] arrPtr;
}
myArrayList::myArrayList(const int a[], int n)
{
maxLen=Len=n;
this->arrPtr=new int[maxLen];
for(int i=0;i arrPtr[i]=a[i]; } myArrayList::myArrayList(const int a[], int n,int max) { maxLen=max; Len=n; this->arrPtr=new int[maxLen]; for(int i=0;i arrPtr[i]=a[i]; } myArrayList::myArrayList(const myArrayList &tList) { maxLen=tList.maxLen; Len=tList.Len; this->arrPtr=new int[maxLen]; for(int i=0;i this->arrPtr[i]=tList.arrPtr[i]; } void myArrayList::sort() { int pos; for(int i=0;i { pos=i; for(int j=i+1;j if(arrPtr[j] pos=j; if(pos!=i) { int temp; temp=arrPtr[i];arrPtr[i]=arrPtr[pos];arrPtr[pos]=temp; } } } void myArrayList::show() { cout<<" the result is:"; for(int i=0;i cout< cout< } bool myArrayList::orderInsert(int num) { if(Len==maxLen) return false; else { int i; for(i=Len-1;arrPtr[i]>num;i--) arrPtr[i+1]=arrPtr[i]; arrPtr[i+1]=num; Len++; return true; } } void main() { int a[5]; for(int i=0;i<5;i++) cin>>a[i]; myArrayList tList1(a,5,10); tList1.sort(); tList1.show(); myArrayList tList2(tList1); tList2.orderInsert(8); tList2.show(); system("pause"); }