91超碰碰碰碰久久久久久综合_超碰av人澡人澡人澡人澡人掠_国产黄大片在线观看画质优化_txt小说免费全本

溫馨提示×

溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊×
其他方式登錄
點擊 登錄注冊 即表示同意《億速云用戶服務條款》

動態數組C++實現方法(分享)

發布時間:2020-10-26 02:36:10 來源:腳本之家 閱讀:154 作者:jingxian 欄目:編程語言

回顧大二的數據結構知識。從數組開始。實現了一個可自動擴充容量的泛型數組。

頭文件:Array.h

#ifndef Array_hpp
#define Array_hpp

template <class T>
class Array{
private:
  T *base;    //數組首地址
  int length;   //數組中元素
  int size;    //數組大小,以數組中元素的大小為單位
public:
  //初始化數組,分配內存
  bool init();
  //檢查內存是否夠用,不夠用就增加
  bool ensureCapcity();
  //添加元素到數組尾
  bool add(T item);
  //插入元素到數組的具體位置,位置從1開始
  bool insert(int index,T item);
  //刪除指定位置的元素并返回,位置從1開始
  T del(int index);
  //返回指定位置的元素
  T objectAt(int index);
  //打印數組所有元素
  void display();
};

#endif /* Array_hpp */

實現:Array.cpp

#include "Array.hpp"
#include <mm_malloc.h>
#include <iostream>
using namespace std;

template<typename T> bool Array<T>::init(){  
  base = (T *)malloc(10*sizeof(T));
  if(!base){
    return false;
  }
  size = 10;
  length = 0;
  return true;
}

template<typename T> bool Array<T>::ensureCapcity(){
  if(length >= size){
    T *newBase = (T*)realloc(base,10 * sizeof(T) + size);
    if(!newBase){
      return false;
    }
    base = newBase;
    size += 10;
    newBase = nullptr;
  }
  return true;
}

template<typename T> bool Array<T>::add(T item){
  if(!ensureCapcity()){
    return false;
  }
  T *p = base + length;
  *p = item;
  length ++;
  return true;
}

template<typename T> bool Array<T>::insert(int index,const T item){
  if(!ensureCapcity()){
    return false;
  }
  if(index < 1 || index > length){
    return false;
  }
  T *q = base + index - 1;
  T *p = base + length - 1;
  while( p >= q){
    *(p+1) = *p;
    p--;
  }
  *q = item;
  q = nullptr;
  p = nullptr;
  length ++;
  return true;
}

template<typename T>T Array<T>::del(int index){
  if(index<1 || index > length){
    return NULL;
  }
  T *q = base + index - 1;
  T item = *q;
  ++q;
  T *p = base + length;
  while(q <= p){
    *(q-1)=*q;
    ++q;
  }
  length --;
  return item;
}

template<typename T>T Array<T>::objectAt(int index){
  if(index<1 || index > length){
    return NULL;
  }
  T *q = base;
  return *(q + index - 1);
}

template <typename T>void Array<T>::display(){
  T *q = base;
  T *p = base +length - 1;
  while (q<=p) {
    cout << *(q++)<<" ";
  }
  cout << endl;
}

使用:

#include <iostream>
#include "Array.cpp"
using namespace std;

int main(int argc, const char * argv[]) {
  Array<int> array = *new Array<int>;
  array.init();
  array.add(1);
  array.insert(1,2);
  array.objectAt(1);
  return 0;
}

以上這篇動態數組C++實現方法(分享)就是小編分享給大家的全部內容了,希望能給大家一個參考,也希望大家多多支持億速云。

向AI問一下細節

免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。

AI

邮箱| 秦安县| 福清市| 汉中市| 扬中市| 山西省| 突泉县| 双桥区| 台州市| 栖霞市| 微博| 灵石县| 慈溪市| 抚顺市| 屯昌县| 阿拉善左旗| 正安县| 上饶县| 蕉岭县| 龙门县| 雷波县| 芦山县| 阿巴嘎旗| 长垣县| 汕头市| 湖北省| 莱阳市| 海伦市| 托克托县| 馆陶县| 建瓯市| 芜湖市| 澜沧| 三原县| 惠来县| 抚州市| 房山区| 乐至县| 富民县| 兴隆县| 石阡县|