顺序表中的元素移动

// 移去index位置的对象,若操作成功,则返回被移去对象,否则返回null
 public E remove(int index) {
  if (this.n != 0 && index >= 0 && index < this.n) {
   E old = (E) this.table[index];
   for (int j = index; j < this.n - 1; j++) { // 元素前移,平均移动n/2
    this.table[j] = this.table[j + 1];
   }
//   System.out.println(this.table[this.n - 1]);
   this.table[this.n - 1] = null;
   this.n--;
   return old; // 若操作成功,则返回被移去对象
  }
  return null; // 未找到删除对象,操作不成功,,返回null
 }

 

我认为,这里的元素移动实际上是复制加覆盖的,所以要加上这个this.table[this.n - 1] = null;
,否则的话this.table[this.n - 1] 还是原来的值,(在this.n--语句执行之前)现在就与this.table[this.n - 2] 的值相等了,

只不过最后没有显示罢了

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值