当前位置:   article > 正文

顺序表的Java实现_java将字符a~s存入顺序表

java将字符a~s存入顺序表

什么是顺序表

顺序表实际上就是一个数组,但是我们将这个数组的属性和使用方法都放在一个类里面,在我们需要使用时,只需要new一个对象来使用这个类就可以。

一、顺序表中插入数据的实现

  1. 判断插入位置是否合法

  1. 判断顺序表是否满

  1. 插入数据(在插入数据时,需要将插入位置后面的数据向后移动一位)

  1. public class MyArrayList {
  2. int[] array;//顺序表的内容存储在一个数组中
  3. int useSize;//有效数据个数
  4. public MyArrayList(){
  5. this.array=new int[10];//在创建一个对象时,创建一个大小为10的数组
  6. }
  7. public void display(){//显示当前顺序表的内容
  8. for (int i = 0; i < this.useSize; i++) {
  9. System.out.print(this.array[i]+" ");
  10. }
  11.          System.out.println();
  12. }
  13. public void add(int pos,int data){//插入一个数据
  14. if(pos <0||pos>this.useSize){//判断插入位置是否合法
  15. System.out.println("插入位置非法");
  16. return;
  17. }
  18. if(useSize==this.array.length){//判断顺序表是否满
  19. this.array=Arrays.copyOf(this.array,this.array.length*2);
  20. }
  21. for (int i = useSize-1; i >= pos; i--) {//插入数据
  22. this.array[i+1]=this.array[i];
  23. }
  24. this.array[pos]=data;
  25. this.useSize++;
  26. }
  27. }

二、顺序表中删除数据

  1. public void del(int pos){//删除某个位置的数据
  2. if (pos<0||pos>this.useSize-1){//判断插入位置是否合法
  3. System.out.println("位置不合法");
  4. return;
  5. }
  6.         if (this.useSize==0){
  7. System.out.println("顺序表为空");
  8. return;
  9. }
  10. for (int i = pos; i <useSize ; i++) {//删除数据
  11. this.array[i]=this.array[i+1];
  12. }
  13. useSize--;
  14. }

三、改变顺序表某个位置的数据

  1. public void change(int pos,int value){
  2. if (pos<0||pos>this.useSize-1){//判断位置是否合法
  3. System.out.println("位置不合法");
  4. return;
  5. }
  6. if (this.useSize==0) { //判断是否为空表
  7. System.out.println("顺序表为空");
  8. return;
  9. }
  10. this.array[pos]=value;
  11. }
  12. }

四、查找数据

  1. public void find(int value){
  2. if (this.useSize==0) { //判断是否为空表
  3. System.out.println("顺序表为空");
  4. return;
  5. }
  6. for (int i = 0; i < useSize; i++) {
  7. if(this.array[i]==value){
  8. System.out.println(i);
  9. return;
  10. }
  11. }
  12. System.out.println("没有这个数据");
  13. }

五、清空数据

只需要使useSize等于0即可

  1. public void clear(){
  2. useSize=0;
  3. }
  4. }

当然也有特殊情况,当顺序表中存储的是引用类型时,只是单一的将useSize改为0无法清空顺序表,因为每一个引用都会指向一个对象,引用不删除,会一直占用空间

  1. public void clear(){
  2. useSize=0;
  3. /* for (int i = 0; i < this.useSize; i++) {
  4. this.array[i]=null;
  5. }*/
  6. }

被注释掉的内容就是引用类型的清空顺序表


//还在学习中,有任何错误,望指正。

声明:本文内容由网友自发贡献,不代表【wpsshop博客】立场,版权归原作者所有,本站不承担相应法律责任。如您发现有侵权的内容,请联系我们。转载请注明出处:https://www.wpsshop.cn/w/不正经/article/detail/538294
推荐阅读
相关标签
  

闽ICP备14008679号