码迷,mamicode.com
首页 > 其他好文 > 详细

给Vector类添加insert

时间:2016-01-21 00:09:41      阅读:168      评论:0      收藏:0      [点我收藏+]

标签:

Object objects[theCapacity];
iterator insert(int pos,const Object& x)
{
   
    Object* oldArray=objects;
    theSize++;
    int i=0;
    if(theCapacity<theSize)
        theCapacity=theSize;
    objects=new Object[theCapacity];
    while(i!=pos)
    {
        objects[i]= oldArray[i];
        
        i++;
    }
    objects[pos]=x;
    for(int k=pos;k<theSize;k++)
        objects[k+1]=oldArray[k];
    delete[] oldArray;
    return &objects[pos];
}

 

给Vector类添加insert

标签:

原文地址:http://www.cnblogs.com/CClarence/p/5146852.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!