您好,登錄后才能下訂單哦!
這篇文章給大家分享的是有關(guān)怎么用Java實現(xiàn)順序表的內(nèi)容。小編覺得挺實用的,因此分享給大家做個參考,一起跟隨小編過來看看吧。
順序表就是按照順序存儲方式存儲的線性表,該線性表的結(jié)點按照邏輯次序依次存放在計算機的一組連續(xù)的存儲單元中。
由于順序表是依次存放的,只要知道了該順序表的首地址及每個數(shù)據(jù)元素所占用的存儲長度,那么就很容易計算出任何一個數(shù)據(jù)元素(即數(shù)據(jù)結(jié)點)的位置。
1、創(chuàng)建類和構(gòu)造方法
public class MyArrayList {
private int [] elem;
private int usedSize;
public MyArrayList(){
this.elem = new int [10];
}
public MyArrayList(int capacity){
this.elem = new int[capacity];
}
}
2、擴容
?public void resize(){
this.elem = Arrays.copyOf(this.elem,2*this.elem.length);
}
3、判斷順序表是否為滿
?public boolean isFull(){
if(this.usedSize == this.elem.length){
return true;
}
return false;
}
4、打印順序表
?public void display() {
for (int i = 0;i < usedSize; i++) {
System.out.print(elem[i]+" ");
}
System.out.println();
}
5、在 pos 位置新增元素
?public void add(int pos, int data) {
if(isFull()){
System.out.println("鏈表已滿!");
resize();
}
if(pos < 0 || pos > this.usedSize){
System.out.println("插入位置不合法!");
return;
}
for (int i = usedSize-1; i >= pos;i--) {
elem[i+1] = elem[i];
}
elem[pos] = data;
this.usedSize++;
}
6、判斷是否包含某個元素
?public boolean contains(int toFind) {
for(int i = 0; i < usedSize;i++){
if(elem[i] == toFind){
return true;
}
}
return false;
}
7、查找某個元素對應(yīng)的位置
public int search(int toFind) {
for(int i = 0; i < usedSize;i++){
if(elem[i] == toFind){
return i;
}
}
return -1;
}
8、獲取 pos 位置的元素
public int getPos(int pos) {
if(pos < 0 || pos >= usedSize){
System.out.println("該pos位置不合法!");
return -1;
}
return elem[pos];
}
9、給 pos 位置的元素修改為 value
public void setPos(int pos, int value) {
if(pos < 0 || pos >= usedSize){
System.out.println("該pos位置不合法!");
return;
}
elem[pos] = value;
}
10、刪除第一次出現(xiàn)的關(guān)鍵字 Key
public void remove(int toRemove) {
int index = -1;
for(int i = 0; i < this.usedSize;i++){
if(this.elem[i] == toRemove){
index = i;
}
}
if(index == -1){
System.out.println("未找到該元素!");
return;
}
for(int j = index;j < this.usedSize-1;j++){
this.elem[j] = this.elem[j+1];
}
this.usedSize--;
}
11、獲取鏈表長度
public int size() {
return this.usedSize;
}
12、清空順序表
?public void clear() {
this.usedSize = 0;
}
感謝各位的閱讀!關(guān)于“怎么用Java實現(xiàn)順序表”這篇文章就分享到這里了,希望以上內(nèi)容可以對大家有一定的幫助,讓大家可以學(xué)到更多知識,如果覺得文章不錯,可以把它分享出去讓更多的人看到吧!
免責(zé)聲明:本站發(fā)布的內(nèi)容(圖片、視頻和文字)以原創(chuàng)、轉(zhuǎn)載和分享為主,文章觀點不代表本網(wǎng)站立場,如果涉及侵權(quán)請聯(lián)系站長郵箱:is@yisu.com進(jìn)行舉報,并提供相關(guān)證據(jù),一經(jīng)查實,將立刻刪除涉嫌侵權(quán)內(nèi)容。