顺序表(C++)
以下为数据结构中的顺序表实现代码,已测试能够运行。虽然说是C++版的,但是其实应该是C语言班的。C++应该是面向对象,用抽象方法实现,而以下代码是面向过程的,只是把C语言中的输入(scanf)和输出(printf)改为了cin和cout而已。如果想要改为C++版的,可以将各个函数变为类的成员函数,使用方法改为调用类的成员方法而已,没有什么特别的。
#include<iostream> #include<stdlib.h>//清屏操作的头文件 using namespace std; //主要操作的函数声明 void insert(int A[],int &length,int); int _delete(int A[],int &length,int n); int locate(int A[],int length,int n); int get(int A[],int length,int ); void create(int A[],int length); void show(int A[],int length); void main1(); int main(){ int action,A[100],length; char c; main1(); while(cin>>action){ if(action==1){ //创建 system("cls"); cout<<"please input the length:"<<endl; cin>>length; create(A,length); system("pause"); system("cls"); main1(); } else if(action==2){ //插入 system("cls"); cout<<"please input the integer:"<<endl; int n; cin>>n; insert(A,length,n); cout<<"OK! the number has been inserted!"<<endl; system("pause"); system("cls"); main1(); } else if(action==3){ //打印 system("cls"); show(A,length); system("pause"); system("cls"); main1(); } else if(action==4){ //获取 system("cls"); cout<<endl<<"please input the number's index you want to get:"<<endl; int n; cin>>n; int result=get(A,length,n); if(!result){ cout<<"wrong! can't find the number in the Array."<<endl; } else { cout<<"OK! find it! it's "<<result<<endl; } system("pause"); system("cls"); main1(); } else if(action==5){ //删除 system("cls"); cout<<endl<<"please input the number you want to delete:"<<endl; int n; cin>>n; int result=_delete(A,length,n); if(!result){ cout<<"wrong! can't find the number in the Arrar."<<endl; } else { cout<<"OK! the number has been deleted"<<endl; } system("pause"); system("cls"); main1(); } else if(action==6){ //定位 system("cls"); cout<<endl<<"please input the number you want to locate:"<<endl; int n; cin>>n; int result=locate(A,length,n); if(!result){ cout<<"wrong! can't find the number in the Array."<<endl; } else { cout<<"the index of "<<n<<" is "<<result<<endl; } system("pause"); system("cls"); main1(); } else { //退出 exit(0); } } } void insert(int A[],int &length,int n){ int i=0; while(i<length&&A[i]<n){ i++; } int temp=i; i=length; while(i>temp){ A[i]=A[i-1]; i--; } A[temp]=n; length++; } int _delete(int A[],int &length,int n){ //用于删除确定的一个数,可稍加修改,用于删除下表为n的数 int i=0; while(i<length&&A[i]!=n){ i++; } if(i==length){ //如果i等于数组的长度,则表示未查找到n值。 return 0; } else { //如果查找到n值。 while(i<length-1){ A[i]=A[i+1]; i++; } length--; return 1; } } int locate(int A[],int length,int n){ int i=0; while(i<length&&A[i]!=n){ i++; } if(i==length){ return 0; } else { return i; } } int get(int A[],int length,int index){ if(index<0||index>length-1){ //当索引下标小于0或大于长度-1的时候,就超出了数组范围。 return 0; } else { return A[index]; } } void create(int A[],int length){ cout<<"please input the numbers of the Array"<<endl; for(int i=0;i<length;i++){ cin>>A[i]; } cout<<endl<<"OK! the Array have been created!"<<endl; } void show(int A[],int length){ cout<<"current Array is:"<<endl; for(int i=0;i<length;i++){ cout<<A[i]<<' '; } cout<<endl; } void main1(){ cout<<"--------------------------------------------"<<endl; cout<<"| |"<<endl; cout<<"| welcome to use the SquenticalList |"<<endl; cout<<"| 1->create the list |"<<endl; cout<<"| 2->insert to the list |"<<endl; cout<<"| 3->show the list |"<<endl; cout<<"| 4->get the number |"<<endl; cout<<"| 5->delete the number |"<<endl; cout<<"| 6->locate the numbet |"<<endl; cout<<"| 7->exit |"<<endl; cout<<"| |"<<endl; cout<<"--------------------------------------------"<<endl; }
顺序表(C++)的更多相关文章
- jdk顺序表笔记
一.AbstractCollection 提供了集合的最大实现 继承该类,必须实现size()和iterator(),因为该类操作集合都是通过iterator 二.fail-fast策略 该策略在集合 ...
- c++顺序表基本功能
头文件 #define LIST_MAX_SIZE 5#define LISTINCREMENT 2#include<assert.h>#include<string>temp ...
- 数据结构:顺序表(python版)
顺序表python版的实现(部分功能未实现) #!/usr/bin/env python # -*- coding:utf-8 -*- class SeqList(object): def __ini ...
- 《数据结构》2.2顺序表(sequence list)
//顺序表节点的定义 typedef struct { datatype data[MAXSIZE]; //数组容量的上限 int len; //记录最后一个元素的位置,相当于一个指针,表空时len= ...
- c数据结构 顺序表和链表 相关操作
编译器:vs2013 内容: #include "stdafx.h"#include<stdio.h>#include<malloc.h>#include& ...
- java顺序表和树的实现
一.顺序表 1.线性表 //java顺序表的实现,如ArrayList就是用线性表实现的,优点是查找快,缺点是添加或删除要移动很多元素,速度慢 public class SequenceList { ...
- 数据结构顺序表删除所有特定元素x
顺序表类定义: template<class T> class SeqList : { public: SeqList(int mSize); ~SeqList() { delete[] ...
- 顺序表C语言版
#include <stdio.h> /* * 顺序表最多输入N个数 */ #define N 10 #define OK 1 #define ERROR -1 struct sequeu ...
- C#线性表之顺序表
线性表是最简单.最基本.最常用的数据结构.线性表是线性结构的抽象(Abstract), 线性结构的特点是结构中的数据元素之间存在一对一的线性关系. 这种一对一的关系指的是数据元素之间的位置关系,即: ...
- C语言 线性表 顺序表结构 实现
一个能够自动扩容的顺序表 ArrList (GCC编译). #include <stdio.h> #include <stdlib.h> #include <string ...
随机推荐
- text-overflow:ellipsis实现超出隐藏时省略号显示
text-overflow:ellipsis;要达到的效果是:文字超出容器宽度时,文字被隐藏的文字用省略号代替.所以该属性只能用于块状元素或行内块元素中,对行内元素是不起作用的. 一般和white-s ...
- 《Java程序设计》实验五 实验报告
实验五 java网络编程 实验内容 XP基础 XP核心实践 相关工具 实验要求 1.没有Linux基础的同学建议先学习<Linux基础入门(新版)><Vim编辑器> 课程 2. ...
- hdu-------1081To The Max
To The Max Time Limit: 2000/1000 MS (Java/Others) Memory Limit: 65536/32768 K (Java/Others)Total ...
- jquery 实现 点击按钮后倒计时效果,多用于实现发送手机验证码、邮箱验证码
原文链接:http://www.cnblogs.com/steed-zgf/archive/2012/02/03/2336984.html <!DOCTYPE html PUBLIC " ...
- Oracle 中的 decode
含义解释:decode(条件,值1,返回值1,值2,返回值2,...值n,返回值n,缺省值) 该函数的含义如下:IF 条件=值1 THEN RETURN(翻译值1)ELSIF 条件=值2 THEN R ...
- php 大数据量及海量数据处理算法总结
下面的方法是我对海量数据的处理方法进行了一个一般性的总结,当然这些方法可能并不能完全覆盖所有的问题,但是这样的一些方法也基本可以处理绝大多数遇到的问题.下面的一些问题基本直接来源于公司的面试笔试题目, ...
- 第二章 XHTML基础
1.一个网页,也就是一个XHTML文档,是由元素组成.元素定义了文本和图形在XHTML文档中的结构.XHTML文档的扩展名通常是.html或者htm. 2.XHTML元素使用XHTML标记定义,每个标 ...
- C#.NET SQL数据库备份与还原解决方案
C#.NET SQL数据库备份与还原解决方案http://www.csframework.com/archive/1/arc-1-20110924-1841.htm 开发框架V2.2(快速开发版)系统 ...
- JS获取上传文件的绝对路径,兼容IE和FF
<input type="file" id="fileBrowser" name="fileBrowser" size="5 ...
- Unity中的Path对应各平台中的Path
OS: Application.dataPath : Application/xxxxxxxx-xxxx-xxxx-xxxx-xxxxxxxxxxxx/xxx.a ...