java语言建立顺序表

 1 package datastructure;
 2 //线性表
 3
 4 public interface IList {
 5     public void clear();
 6     public boolean isEmpty();
 7     public int length();
 8     public Object get(int i) throws Exception;
 9     public void insert(int i,Object x) throws Exception;
10     public void remove(int i) throws Exception;
11     public int indexOf(Object x);
12     public void display();
13
14 }
 1 package datastructure;
 2 //顺序表
 3
 4 public class SqList implements IList {
 5     private Object[] listElem;
 6     private int curLen;
 7     public SqList(int maxSize){
 8         curLen =0;
 9         listElem = new Object[maxSize];
10     }
11     public void clear() {
12         curLen=0;
13     }
14     public boolean isEmpty() {
15
16         return curLen==0;
17     }
18     public int length() {
19
20         return curLen;
21     }
22     public Object get(int i) throws Exception {
23         if(i<0||i>curLen-1)
24             throw new Exception("第"+i+"个元素不存在");
25
26         return listElem[i];
27     }
28
29     public void insert(int i, Object x) throws Exception {
30         if(curLen==listElem.length)
31             throw new Exception("顺序表已满");
32         if(i<0||i>curLen)
33             throw new Exception("插入位置不合法");
34         for(int j=curLen;j>i;j--)
35             listElem[j]=listElem[j-1];
36            listElem[i]=x;
37            curLen++;
38     }
39     public void remove(int i) throws Exception {
40         if(i<0||i>curLen-1)
41             throw new Exception("删除位置不合法");
42         for(int j=i;j<curLen-1;j++)
43             listElem[j]=listElem[j+1];
44                 curLen--;
45
46     }
47     public int indexOf(Object x) {
48         int j=0;
49         while(j<curLen&&!listElem[j].equals(x))
50             j++;
51         if(j<curLen)
52             return j;
53         else
54         return -1;
55     }
56     public void display() {
57         for(int j=0;j<curLen;j++)
58             System.out.print(listElem[j]+" ");
59         System.out.println();
60     }
61
62 }
时间: 2024-10-05 19:55:47

java语言建立顺序表的相关文章

Java语言描述顺序表类,顺序表类的基本操作实现

数据结构(Java版)ch2 线性表的顺序存储(顺序表) 线性表的抽象数据Java接口描述如下: package ch2; /** * 线性表的抽象数据接口,用Java语言描述线性表的这些功能! * @author 房廷飞 * */ public interface IList { public void clear(); //将线型表置成空表 public boolean isEmpty(); //判断是不是空表 public int length(); //返回线性表的长度 public O

java语言实现顺序表

public class SqList { private int[] data; private int length; public SqList() { data = new int[30]; length = 0; } public boolean empty() { return length == 0; } public int length() { return length; } public void display() { int i; for(i=0; i<length-1

C语言实现顺序表的增删查改以及排序

顺序表是线性表中的一种重要的数据结构,也是最基础的数据结构,今天我用C语言实现下线性表的基本操作,以及冒泡排序与选择排序在线性表中的算法实践,代码如下: seqlist.h: #ifndef __SEQLIST__ #define __SEQLIST__ #define MAX 5 #include <stdlib.h> typedef int DataType; typedef struct SeqList { DataType array[MAX]; size_t size; }SeqLi

编程实现顺序表的以下基本操作:建立顺序表,修改顺序表,插入顺序表,删除顺序表。

#include <iostream> #include <stdio.h> #include <stdlib.h> using namespace std; typedef int ElemType; typedef int Status; #define OK 1 #define ERROR 0 #define OVERFLOW -2 #define LIST_INIT_SIZE 100 #define LISTINCREMENT 10 ElemType * new

利用C语言实现顺序表

利用C语言实现静态顺序表 //---------- 头文件#include "SeqList.h" -------------------- #pragma once #include<stdio.h>#include<stdlib.h>#include<string.h> #define MAX 100 //------------------ 定义数据类型 ----------------------------typedef int DataT

使用JAVA数组实现顺序表

1,引入了JAVA泛型类,因此定义了一个Object[] 类型的数组,从而可以保存各种不同类型的对象. 2,默认构造方法创建了一个默认大小为16的Object数组:带参数的构造方法创建一个指定长度的Object数组 3,实现的顺序表的基本操作有:返回表的长度.获取指定索引处的元素(注意是索引,而不是位置.索引以下标0开始,位置以下标1开始).按值查找数据元素的位置.直接插入元素(顺序表尾部).向指定位置插入元素.直接删除元素(在顺序表尾部).删除指定索引处元素.判断表是否为空.清空表. 1 im

C语言实现顺序表

顺序表是C语言中一种基本的结构,可以存储各种基本类型的数据,而且不但可以存储基本类型的数据,也可以存储一种结构.所以顺序表是一种在学C的过程中必须掌握的结构,通过学习整理,下面来实现一下: 首先,先要想好用什么实现,一般实现最基本的顺序表的话直接用数组实现,我们在这用一个结构体来封装这个顺序表(封装这一概念是在C++中最常用的概念) #define ARRAY_EMPTY -2 #define ARRAY_FULL -1 #define MAX_SIZE 10000 typedef int Da

C语言实现顺序表(数据结构线性表部分)

-------------------------------------------- 顺序表 - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - 概念图 模块设计:伪代码写的非常差劲- -见谅 //初始化顺序表(InitList) 使用malloc函数

用C语言实现顺序表的插入和删除算法

什么是线性表? 线性表是n个数据元素的有限序列.根据线性表的显现方式,线性表又分为顺序表(数据元素在内存中的存储空间是连续的)和链表(数据元素在内存中的存储空间是不连续的). 线性表如何用C语言实现?线性表可以进行哪些操作? 在C语言中,线性表通过结构体的方式来实现.结构体中定义了线性表的存储空间地址,当前长度,和当前分配的存储容量.操作包含在指定位置插入某一元素.删除指定元素.查找指定的元素等.在这里重点介绍插入和删除算法. 下面就是关于这一部分内容的陈述. 线性表的C语言实现 需要先定义好的