1. 首页
  2. 编程语言
  3. C++ 
  4. 用C++编写的顺序表基本操作

用C++编写的顺序表基本操作

上传者: 2020-08-21 06:27:40上传 RAR文件 1.63MB 热度 19次
用C++编写的顺序表基本操作 #include "stdafx.h" #include "iostream" using namespace System; using namespace std; const int Max=10; class seqList {int data[Max]; int i,last; public: seqList(int x[],int n) { for(int i=0;i
用户评论