資料結構 JAVA實現簡單的順序表

2021-08-29 07:54:09 字數 709 閱讀 3424

public inte***ce ilist

順序錶類sqlist的**:

public class sqlist implements ilist

//置空操作

public void clear()

//判斷當前長度是否為0,為0即為空表

public boolean isempty()

//取表長度,返回curlen當前長度即可

public int length()

//取表元素

public object get(int i) throws exception

//插入操作

public void insert(int i, object x) throws exception

//刪除操作

public void remove(int i) throws exception

//查詢操作,找到則返回下標,否則返回-1

public int indexof(object x)

//顯示操作

public void display()

//主函式

資料結構 順序棧的簡單實現

順序棧的實現 include define maxsize 200 typedef struct sqstacksqstack 初始化棧 void initstack sqstack s 判棧空 bool stackempty sqstack s 進棧 bool push sqstack s,int...

資料結構 Java實現 簡單回文

t n o n s n o 1 public class palindromestring for int i 0,j str.length 1 iif str.charat i str.charat j return true test public void test 只考慮字母和數字,忽略大小...

資料結構 順序表簡單功能實現

標頭檔案seqlist.h 包含了順序表的增刪查改以及氣泡排序和二分法及一些簡單功能實現 pragma once include typedef int sldatatype typedef struct seqlist seqlist 基本增刪查改介面 初始化 void seqlistinit s...